Kaydet (Commit) bd40c32f authored tarafından Ian Kelly's avatar Ian Kelly

Fixed some column names in the tests that were breaking the test suite on Oracle.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9799 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst b197fa7e
......@@ -9,8 +9,8 @@ from django.db import models
#
class Number(models.Model):
integer = models.IntegerField()
float = models.FloatField(null=True)
integer = models.IntegerField(db_column='the_integer')
float = models.FloatField(null=True, db_column='the_float')
def __unicode__(self):
return u'%i, %.3f' % (self.integer, self.float)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment