diff options
Diffstat (limited to 'tests/schema/models.py')
| -rw-r--r-- | tests/schema/models.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/schema/models.py b/tests/schema/models.py index 2fc9095b61..75e32a0eab 100644 --- a/tests/schema/models.py +++ b/tests/schema/models.py @@ -147,20 +147,6 @@ class IntegerPK(models.Model): db_table = "INTEGERPK" # uppercase to ensure proper quoting -class CharFieldPK(models.Model): - field1 = models.CharField(max_length=10, primary_key=True) - - class Meta: - apps = new_apps - - -class CharFieldPKUnique(models.Model): - field1 = models.CharField(max_length=10, primary_key=True, unique=True) - - class Meta: - apps = new_apps - - class Note(models.Model): info = models.TextField() address = models.TextField(null=True) |
