Opened 16 years ago
Last modified 16 years ago
#11428 closed
manage.py reset not working for proxy models — at Version 2
| 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 (last modified by )
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.
Change History (3)
comment:1 by , 16 years ago
| Version: | 1.0 → SVN |
|---|
comment:2 by , 16 years ago
| Description: | modified (diff) |
|---|
by , 16 years ago
| Attachment: | patch.diff added |
|---|
Note:
See TracTickets
for help on using tickets.
(reformatted description)