mirror of
https://github.com/Hopiu/django.git
synced 2026-05-05 22:24:43 +00:00
Avoid using a column named "date" in tests
Oracle can have problems with such columns. Fixed #17932 again. Thanks to Vinay Sajip for the report.
This commit is contained in:
parent
bf9d5eff4c
commit
34340517fc
1 changed files with 2 additions and 1 deletions
|
|
@ -1,7 +1,8 @@
|
|||
from django.db import models
|
||||
|
||||
class Event(models.Model):
|
||||
date = models.DateField()
|
||||
# Oracle can have problems with a column named "date"
|
||||
date = models.DateField(db_column="event_date")
|
||||
|
||||
class Parent(models.Model):
|
||||
name = models.CharField(max_length=128)
|
||||
|
|
|
|||
Loading…
Reference in a new issue