django-blog icon indicating copy to clipboard operation
django-blog copied to clipboard

migrate的时候表没有自动创建

Open Dior222 opened this issue 8 years ago • 1 comments

Dior222 avatar May 14 '17 15:05 Dior222

Django1.10以上要这样:

python manage.py makemigrations blog
python manage.py migrate

先makemigrations app名字,会在app对应的文件夹下生成migrations文件夹包含迁移的sql语句 然后在执行migrate自动创建表

jhao104 avatar May 15 '17 02:05 jhao104