I am using the svn trunk version of Django. I was just starting a new django project using sqlite for the db backend. Excerpt from models.py:
class User(models.Model): user_id = models.AutoField(primary_key=True) This produces a table in sqlite that will NOT take NULL for a value when inserting records. You get an error back. Reading sqlites manual, this is _supposed_ to work, but doesn't seem to. However and furthermore, you don't really get autoincrement behavior from sqlite unless you add in the SQL keyword "AUTOINCREMENT" when creating the table. Django does not do this currently, so I hacked in an option in db.models, so I can now do: class User(models.Model): user_id = models.AutoField(primary_key=True, autoincrement=True) Then I get a true autoincrement user_id field in the sqlite db. Can the list please advise me if I am missing anything, or if I should submit a patch in trac? Thanks Alec --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---