我在Django中创建模型时遇到问题。 我想创建新模型,所以我写代码:
class Image(models.Model):
title = models.CharField(max_length=100)
image = models.ImageField()
下一步,我做了python manage.py makemigrations
,python 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的表。
有人知道我该怎么办吗?还是可以看到错误,是否知道提示或其他帮助方法?