#11985: not generating all fields ------------------------------------+--------------------------------------- Reporter: maciejplonski | Owner: nobody Status: closed | Milestone: Component: Uncategorized | Version: 1.1 Resolution: worksforme | Keywords: orm Stage: Unreviewed | Has_patch: 0 Needs_docs: 0 | Needs_tests: 0 Needs_better_patch: 0 | ------------------------------------+--------------------------------------- Changes (by kmtracey):
* status: reopened => closed * resolution: => worksforme Comment: Cutting and pasting exactly what you have posted into a new app's models.py file, adding an import for datetime, and running manage.py sql on the new app, produces SQL that includes the is_mod and is_active fields: {{{ k...@lbox:~/software/web/playground$ python manage.py sql tttt BEGIN; CREATE TABLE "tttt_user" ( "id" integer NOT NULL PRIMARY KEY, "username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "email" varchar(75) NOT NULL, "public_email" bool NOT NULL, "password" varchar(128) NOT NULL, "is_active" bool NOT NULL, "is_mod" bool NOT NULL, "last_login" datetime NOT NULL, "date_joined" datetime NOT NULL ) ; COMMIT; }}} Really, Django SQL generation for tables is not fundamentally broken. Whatever is going on is something weird in your setup. The right place to figure out what that is is django-users or the IRC channel. I will also note you posted the model definitions for 'user' and 'group' but the SQL generated for 'fuser' and 'fgroup'. You really need to post (in one of those other places, not here) exactly what you are using, not something kind of like it. Figuring out what is wrong with something kind of different from what you are actually using is going to be very hard. -- Ticket URL: <http://code.djangoproject.com/ticket/11985#comment:3> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---