Changes between Initial Version and Version 2 of Ticket #11428
- Timestamp:
- Jul 6, 2009, 4:34:59 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11428
- Property Version 1.0 → SVN
-
Ticket #11428 – Description
initial v2 1 1 I have created a new project and a new app, testapp. In testapp/models.py I have: 2 2 3 {{{ 4 #!python 3 5 class Test(models.Model): 4 6 pass … … 7 9 class Meta: 8 10 proxy = True 9 10 Running python manage.py sqlreset testappI get the following output:11 11 }}} 12 Running `python manage.py sqlreset testapp` I get the following output: 13 {{{ 12 14 BEGIN; 13 15 DROP TABLE "testapp_test"; … … 21 23 ; 22 24 COMMIT; 23 25 }}} 24 26 I am using Django version 1.1 beta 1 SVN-11196. 25 27