﻿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:

{{{
#!python
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.


"		closed	Uncategorized	dev		fixed			Unreviewed	1	0	0	1	0	0
