Create and Enable Virtual Environment
python -m venv .venv
source .venv/bin/activateApply migratons (in venv)
python manage.py migrateCreate migrations (in venv)
python manage.py makemigrationsReset specific migration
python manage.py migrate {app_name} zeroRollback to specific migration
python manage.py migrate {app_name} {migration_number}Apply specific migration that might already exist (fake)
python manage.py migrate {app_name} {migration_number} --fakeFix Error: column ... of relation ... contains null values
blank=True, null=True # temporarily add on specefic line