我有一个带有 django 的站点,显示基本视图和管理站点,
但是当我登录管理站点时,我看不到模型:
这是我的models.py
from django.db import models
# Create your models here.
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Admin:
pass
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice = models.CharField(max_length=200)
votes = models.IntegerField()
class Admin:
pass
所以我从我的数据库方案中引用了管理员,
但在我的管理员中看不到这个表,
缺什么?
谢谢!