モデルの作成ができたら,アプリケーションをプロジェクトに登録して有効化する.このために,django_comment/settings.py に追加する.
django_comment/settings.py (抜粋)
# Application definition
INSTALLED_APPS = [
'comments.apps.CommentsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
アプリケーションの登録後,マイグレーションファイルを作成する.この作業によって,comments/models.py の内容に従って comments/migrations/0001_initial.py ファイルが生成された.
(base) C:\Users\lecture\Documents\django\django_comment>python manage.py makemigrations comments ⏎ Migrations for 'comments': comments\migrations\0001_initial.py - Create model Comment (base) C:\Users\lecture\Documents\django\django_comment>