parts/django/tests/regressiontests/initial_sql_regress/models.py
changeset 69 c6bca38c1cbf
equal deleted inserted replaced
68:5ff1fc726848 69:c6bca38c1cbf
       
     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(max_length = 50)
       
     9 
       
    10 # NOTE: The format of the included SQL file for this test suite is important.
       
    11 # It must end with a trailing newline in order to test the fix for #2161.