Last active
September 28, 2016 06:28
-
-
Save ma1onso/4171a47506dbfb7a3e9851268b265550 to your computer and use it in GitHub Desktop.
Conectarme a psql y eliminar historical migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conectarse a PSQL: sudo -u postgres psql -d finance | |
Eliminar: | |
DROP TABLE django_admin_log; | |
DELETE FROM django_migrations WHERE app = 'admin'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment