我有一个带有选择字段的CharField类型,如下所示:
class Thing(models.Model):
def __unicode__(self):
return self.name
A = 'a'
B = 'b'
C = 'c'
TYPE_CHOICES = (
(A, 'a'),
(B, 'b'),
(C, 'c'),
)
...
type = models.CharField(max_length = 1, choices=TYPE_CHOICES)
...
现在,当我尝试访问页面添加/事物时,我在/ path / to / thing / add /中获得了一个DatabaseError 关系“place_thing”的列“类型”不存在
我检查了数据库(postgres),我发现该类型不是错误中所说的列。
为什么在同步或迁移数据库时没有添加类型字段?
如何在我的数据库(postgres)中创建列'TYPE_CHOICES'和'type'?
有人可以向我解释数据库为Thing类创建的内容吗?
谢谢
凯蒂
答案 0 :(得分:0)
我最终使用
ALTER TABLE table_name ADD COLUMN type varchar(30);
这有效
我猜TYPE_CHOICES列已经制作了
感谢