﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11428	manage.py reset not working for proxy models	Anssi Kääriäinen	nobody	"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.


"		new	Uncategorized	1.0					Unreviewed	0	0	0	0	0	0
