我想创建一个超级用户,但是每次运行
python3 manage.py createsuperuser
说You have 15 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
你能帮我吗?
我正在使用Python 3和Django 2.1.2
答案 0 :(得分:2)
运行
python manage.py makemigrations $YOURNEWAPP
它将使对象成为您创建的新模型
然后运行
python manage.py migrate
它将创建整个必要表并将其添加到数据库中