Changes between Initial Version and Version 2 of Ticket #11428


Ignore:
Timestamp:
Jul 6, 2009, 4:34:59 AM (15 years ago)
Author:
Ramiro Morales
Comment:

(reformatted description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11428

    • Property Version 1.0SVN
  • Ticket #11428 – Description

    initial v2  
    11I have created a new project and a new app, testapp. In testapp/models.py I have:
    22
     3{{{
     4#!python
    35class Test(models.Model):
    46    pass
     
    79    class Meta:
    810        proxy = True
    9 
    10 Running python manage.py sqlreset testapp I get the following output:
    11 
     11}}}
     12Running `python manage.py sqlreset testapp` I get the following output:
     13{{{
    1214BEGIN;
    1315DROP TABLE "testapp_test";
     
    2123;
    2224COMMIT;
    23 
     25}}}
    2426I am using Django version 1.1 beta 1 SVN-11196.
    2527
Back to Top