Created
December 26, 2011 09:38
-
-
Save lqez/1520810 to your computer and use it in GitHub Desktop.
An alternative approach to drop all tables in django project
This file contains 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
#!/usr/bin/python | |
# Alternative approach. | |
import os | |
import MySQLdb | |
print 'drop remaining tables...' | |
for name, db in settings.DATABASES.iteritems(): | |
conn = MySQLdb.connect( db['HOST'], db['USER'], db['PASSWORD'], db['NAME'] ) | |
c = conn.cursor() | |
c.execute('SET FOREIGN_KEY_CHECKS=0'); | |
c.execute('SHOW TABLES') | |
for table in c.fetchall(): | |
print '\t', table[0] | |
c.execute('DROP TABLE %s' % table[0]) | |
c.execute('SET FOREIGN_KEY_CHECKS=1'); | |
conn.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment