Opened 15 years ago

Last modified 15 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 Ramiro Morales)

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 anonymous, 15 years ago

Version: 1.0SVN

comment:2 by Ramiro Morales, 15 years ago

Description: modified (diff)

(reformatted description)

by Anssi Kääriäinen, 15 years ago

Attachment: patch.diff added
Note: See TracTickets for help on using tickets.
Back to Top