Opened 16 years ago
Last modified 16 years ago
#11428 closed
manage.py reset not working for proxy models — at Initial Version
| Reported by: | Anssi Kääriäinen | Owned by: | nobody |
|---|---|---|---|
| Component: | Uncategorized | Version: | dev |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | yes |
| Easy pickings: | no | UI/UX: | no |
Description
I have created a new project and a new app, testapp. In testapp/models.py I have:
class Test(models.Model):
pass
class Test2(Test):
class Meta:
proxy = True
Running python manage.py sqlreset testapp I get the following output:
BEGIN;
DROP TABLE "testapp_test";
DROP TABLE "testapp_test";
CREATE TABLE "testapp_test" (
"id" integer NOT NULL PRIMARY KEY
)
;
CREATE TABLE "testapp_test" (
)
;
COMMIT;
I am using Django version 1.1 beta 1 SVN-11196.
Note:
See TracTickets
for help on using tickets.