我正在使用 Django 从已经创建并被其他人使用的现有 mysql 数据库导入。我在用着:
python manage.py inspectdb > models.py
我的模型中的类如下:
class Funciones(models.Model):
idfuncion = models.IntegerField(primary_key=True)
idpelicula = models.ForeignKey(Peliculas, db_column='idpelicula')
idcine = models.ForeignKey(Cines, db_column='idcine')
hora = models.TextField() # This field type is a guess.
tipo_3d = models.IntegerField(null=True, db_column=u'3d', blank=True) # Field renamed
xd = models.IntegerField(null=True, blank=True)
gtmax = models.IntegerField(null=True, blank=True)
vip = models.IntegerField(null=True, blank=True)
idioma = models.CharField(max_length=33)
idciudad = models.ForeignKey(Ciudades, db_column='idciudad')
class Meta:
db_table = u'funciones'
现在这个属性: hora = models.TextField() # 这个字段类型是猜测
对应MYSQL中的一个时间数据类型。现在,由于我无法更改 MYSQL 中的数据类型,因为其他人已经从另一个应用程序创建了许多对数据库的查询,我想知道我应该在我的 django 模型中使用的适当的相应 django 数据类型。我在想DateTimeField但是我应该在写入数据库之前以某种方式截断日期部分。
有任何想法吗?
谢谢
编辑:
正如佩德罗所指出的:
Django 实际上有一个 TimeField,为什么不使用它呢?——佩德罗·罗马诺