由于定义“app_label”而未创建数据库Django 中的元数据

发布于 2024-12-18 02:48:08 字数 522 浏览 0 评论 0原文

我正在 Django(1.3) 中设计一个简单的模型,它有 3 个字段和一些 META 选项。

class DataSource(models.Model):
    title           = models.CharField(max_length=255)
    priority        = models.IntegerField(unique=True)
    read_only       = models.BooleanField(default = False)

    class Meta:
        verbose_name = "Data Source"
        verbose_name_plural = "Data Sources"
        app_label = 'My Admin'

现在,当我 syncdb 时,该模型的表并未在数据库中创建。

可能是什么原因?

我应该删除它吗?

如果我想保留它,解决方案是什么?

I am designing a simple model in Django(1.3) which has 3 fields and some META options.

class DataSource(models.Model):
    title           = models.CharField(max_length=255)
    priority        = models.IntegerField(unique=True)
    read_only       = models.BooleanField(default = False)

    class Meta:
        verbose_name = "Data Source"
        verbose_name_plural = "Data Sources"
        app_label = 'My Admin'

Now, this model's table isn't being created in the database when I syncdb.

What could be the reason?

Should I remove it?

If I want to keep it, what is(are) the solution(s)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待我真够勒 2024-12-25 02:48:08

阅读文档:

app_label

如果模型存在于标准 models.py 之外(例如,如果应用的模型位于 myapp.models 的子模块中),则该模型必须定义哪个模型应用程序是它的一部分:

app_label = 'myapp'

app_label 必须是应用程序名称。您没有名为“我的管理员”的应用程序。

Read the documentation:

app_label

If a model exists outside of the standard models.py (for instance, if the app’s models are in submodules of myapp.models), the model must define which app it is part of:

app_label = 'myapp'

The app_label must be an app name. You don't have an app called "My Admin".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文