Commit 4e4decaf authored by Karen Tracey's avatar Karen Tracey
Browse files

Tweaked a test model in delete_regress to avoid having a column name that...

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
parent 37861cf7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)