Django setting.py添加app

在django创建app中,修改models.py添加对应的数据库表,后执行

makemigrations Mynewsite

提示: App Mynewsite could not be found. Is it in INSTALLED_APPS?
这时候需要在settings.py中找到INSTALLED_APPS =,添加app名
[图片上传失败...(image-6896ee-1534752078152)]

重新执行后出现:

Migrations for 'Mynewsite':
  Mynewsite\migrations\0001_initial.py:
    - Create model UserMessage

证明可以创建成功

你可能感兴趣的:(Django setting.py添加app)