Ticket #13322: 13322-test.diff
File 13322-test.diff, 527 bytes (added by , 14 years ago) |
---|
-
tests/regressiontests/inspectdb/models.py
diff --git a/tests/regressiontests/inspectdb/models.py b/tests/regressiontests/inspectdb/models.py index fc2548b..11556c2 100644
a b 1 # -*- encoding: utf-8 -*- 1 2 from django.db import models 2 3 3 4 … … class People(models.Model): 6 7 7 8 class Message(models.Model): 8 9 from_field = models.ForeignKey(People, db_column='from_id') 10 11 class Calendar(models.Model): 12 day = models.IntegerField(db_column=u'día')