我有一个模型文件夹,其中包含数据库中已经存在的文件中的一些模型。我刚刚添加了另一个文件/模型,但是当我运行 syncdb 时它没有被添加到数据库中。我试过 manage.py validate 并且运行良好。我也运行了代码,只有当它尝试使用“表不存在”保存时才会失败。
原来的结构是这样的:
/models
-- __ init __ .py
-- file1.py
-- file2.py
和__ init __ .py 看起来像:
from file1 import File1Model
from file2 import File2Model
我添加了 file3.py
/models
-- __ init __ .py
-- file1.py
-- file2.py
-- file3.py
并修改了 __ init __ .py
from file1 import File1Model
from file2 import File2Model
from file3 import File3Model
和 file3 的内容(名称可能已更改以保护无辜者,但除此之外它的确切文件):
更新:刚刚尝试添加主键,因为 id 字段可能已与自动添加的整数主键 id 混淆。还尝试了一些变化,但没有骰子。
from django.db import models
from django.contrib.auth.models import User
class File3Model(models.Model):
user = models.OneToOneField(User)
token = models.CharField(max_length=255, blank=False, null=False)
id = models.CharField(primary_key=True, max_length=255)
class Admin:
pass
class Meta:
app_label = 'coolabel'
def __unicode__(self):
return self.user.username
@staticmethod
def getinstance(user, token, id):
try:
instance = File3Model.objects.get(pk=id)
if instance.token != token:
instance.token = token
instance.save()
return instance
except:
pass
instance = File3Model()
instance.user = user
instance.token = token
instance.id = id
instance.save()
return instance
所以在这个例子中,File1Model 和 File2Model 已经在 DB 中,并且在 syncdb 之后仍然在 DB 中。但是,即使重新运行 syncdb,也不会添加 File3Model。有什么办法可以弄清楚为什么没有添加新模型?