如果在django中无法迁移,该怎么办?

时间:2019-03-01 22:42:03

标签: python django migrate makemigrations

我在Django中创建模型时遇到问题。 我想创建新模型,所以我写代码:

class Image(models.Model):
    title = models.CharField(max_length=100)
    image = models.ImageField()

下一步,我做了python manage.py makemigrationspython manage.py migrate。我得到了这个结果:

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
    ('myfirstapp', '0008_delete_image'),
]

operations = [
    migrations.CreateModel(
        name='Image',
        fields=[
            ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
            ('title', models.CharField(max_length=100)),
            ('image', models.ImageField(upload_to='')),
        ],
    ),
]

但是在Django管理中我无权访问Image的表。

有人知道我该怎么办吗?还是可以看到错误,是否知道提示或其他帮助方法?

1 个答案:

答案 0 :(得分:2)

这个问题似乎与迁移无法正常进行有关。

迁移不会使模型出现在管理员中。为此,您需要register your model