Re: Doubt regarding JSON/SQL in Django

2013-03-30 Thread scottanderso...@gmail.com
Remember: Premature optimization is the root of all evil. Use a database for its intended purpose: storing data. If you use individual files then you need to implement your own locking, writing to disk, caching, and so forth. Not only is the database more functional, but it will likely be more

Re: 1.5 custom user model: Add User with default UserCreationForm results in "no such table: auth_user"

2013-03-20 Thread scottanderso...@gmail.com
On Friday, March 1, 2013 2:51:50 AM UTC-5, Russell Keith-Magee wrote: > > The good news is that you can still re-use the form logic in those two > forms -- a form is just a class, so you can subclass them. If you User > model subclasses AbstractUser, all the core fields have the same name and >