thirdparty/google_appengine/lib/django/tests/regressiontests/initial_sql_regress/models.py
changeset 2866 a04b1e4126c4
parent 2864 2e0b0af889be
child 2868 9f7f269383f7
equal deleted inserted replaced
2864:2e0b0af889be 2866:a04b1e4126c4
     1 """
       
     2 Regression tests for initial SQL insertion.
       
     3 """
       
     4 
       
     5 from django.db import models
       
     6 
       
     7 class Simple(models.Model):
       
     8     name = models.CharField(maxlength = 50)
       
     9 
       
    10 __test__ = {'API_TESTS':""}
       
    11 
       
    12 # NOTE: The format of the included SQL file for this test suite is important.
       
    13 # It must end with a trailing newline in order to test the fix for #2161.