Fix a small typo in docs/upload_handling.txt
[django.git] / tests / regressiontests / initial_sql_regress / models.py
blob7cf725991ad629b45c241a661b2771b9df6eb0b4
1 """
2 Regression tests for initial SQL insertion.
3 """
5 from django.db import models
7 class Simple(models.Model):
8 name = models.CharField(max_length = 50)
10 __test__ = {'API_TESTS':""}
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.