Tweaked a test model in delete_regress to avoid having a column name that causes a failure on Oracle.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2010-04-04 17:42:23 +00:00
parent 37861cf7eb
commit 4e4decaf42
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Child(models.Model):
class PlayedWith(models.Model):
child = models.ForeignKey(Child)
toy = models.ForeignKey(Toy)
date = models.DateField()
date = models.DateField(db_column='date_col')
class PlayedWithNote(models.Model):
played = models.ForeignKey(PlayedWith)