sqlite3 - Django: Database not making migrations -
so royally messed project yesterday. here's little recap:
i expanded project django tutorial (mysite, polls, etc.) , wanted change file/directory names these. when did that, messed project , couldn't run anything. decided change "polls", "mysite", "static", "templates", etc. now, whenever try restore database, tells me there no new migrations no migrations being added "migrations" folder.
any ideas on how fix this?
migrate run migrations if exist. create migrations makemigrations first. check migrations database has run ./manage.py migrate --list. information stored in django_migrations table , if rename apps , forth db might think migrations run.
Comments
Post a Comment