[PYTHON] Django DB initialization commands
I'll keep the command for my memorandum in case I want to recreate the Django DB.
- cd (application you want to remove)
- rm -d -r migrations/
- cd (project file)
- rm -d pr db.sqlite3
- python manage.py makemigrations (application name)
- python manage.py migrate
- python manage.py createsuperuser