PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como recriar uma tabela excluída com o Django Migrations?


No django 1.7 você pode tentar:
1. Delete your migrations folder

2. In the database: DELETE FROM django_migrations WHERE app = 'app_name'.
   You could alternatively just truncate this table.

3. python manage.py makemigrations

4. python manage.py migrate --fake

Se você está trabalhando no django 1.9.5, esta é a solução 100% para este problema:
1. Delete your migrations folder

2. In the database: DELETE FROM django_migrations WHERE app = 'app_name'.
   You could alternatively just truncate this table.

3. python manage.py makemigrations app_name

4. python manage.py migrate

Isso funciona 100% para mim!