南不为第三方安装的应用程序创建表

时间:2012-07-15 01:18:00

标签: django postgresql django-south

我正在使用django创建一个博客。它安装在虚拟环境中,并已安装django-tagging。我在南方进行数据库迁移,一切似乎都适用于我的迁移,但似乎没有创建标记表,所以当我通过管理员添加博客文章时,我得到了着名的postgresql错误:

Exception Type: DatabaseError at /admin/bppsite/blogpost/add/
Exception Value: relation "tagging_tag" does not exist
LINE 1: ...ECT "tagging_tag"."id", "tagging_tag"."name" FROM "tagging_t...

以下是我的models.py的相关部分:

from south.modelsinspector import add_introspection_rules
add_introspection_rules([], ["^tagging\.fields\.TagField"])

from tagging.models import Tag
from tagging.fields import TagField

class BlogPost(models.Model):
    title = models.CharField(max_length = 255)
    text = models.TextField()
    author = models.ForeignKey(User)
    created = models.DateTimeField(auto_now_add = True)
    modified = models.DateTimeField(auto_now = True)
    status = models.CharField(max_length = 10, choices=POST_STATUS_CHOICES,     default='DRAFT')
    slug = models.SlugField(max_length = 255, blank=True)
    category = models.ManyToManyField(Category)
    tags = TagField()

    def __unicode__(self):
        return self.title

    class Meta:
        ordering = ["-created"]

    def save(self):
        if not self.id:
            self.slug = slugify(self.title)
        super(BlogPost, self).save()

    def set_tags(self, tags):
        Tag.objects.update_tags(self, tags)

    def get_tags(self, tags):
        return Tag.objects.get_for_object(self)

,并从settings.py安装了应用:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'south',
    'tinymce',
    'tagging',
    'bppsite',
)

我已尝试在INSTALLED_APPS中移动应用程序的排序(认为标记可能需要在我的应用程序之前)但它似乎没有任何区别。

我知道这将是一件简单但却无法理解的事情。

感谢 亚伦

1 个答案:

答案 0 :(得分:11)

行。我简直不敢相信,答案就在我面前。但是,如果其他人碰巧处于相同的位置,希望他们会偶然发现这个我现在会自己回答的问题。

这个问题与django-tagging无关。这是因为南方只会迁移我告诉它迁移的东西!像南方一样令人敬畏(我现在永远不会使用django项目,我现在已经找到了它) - 它不会迁移第三方应用程序。我假设南方会查看我的settings.py并找出需要与数据库同步的已安装的应用程序,然后将它们捡起来,就像我正常运行syncdb一样。 这不是南方所做的,因此每个安装的第三方应用程序都需要自行迁移以确保它存在于数据库中。 所以,我必须做的就是将表格放到我的数据库中:

./manage.py schemamigration tagging --initial
./manage.py migrate tagging

我确信有一种方法可以将所有的迁移混合在一起,但我现在可以逐一为我的小规模的东西做这些 - 很高兴有人详细说明这个答案并揭示最好的方法使用单个命令同时迁移所有应用程序 - 是否可能?