forked from expo/troggle
Speed up migrations and init
This commit is contained in:
parent
3e3cae507c
commit
721341604c
@ -85,6 +85,7 @@ def reinit_db():
|
||||
else:
|
||||
print(" - No database file found: " + currentdbname + " ..continuing, will create it.\n")
|
||||
else:
|
||||
with transaction.atomic():
|
||||
cursor = django.db.connection.cursor()
|
||||
cursor.execute("DROP DATABASE %s" % currentdbname)
|
||||
cursor.execute("CREATE DATABASE %s" % currentdbname)
|
||||
@ -93,6 +94,7 @@ def reinit_db():
|
||||
|
||||
print(" - Migrating: " + django.db.connections.databases['default']['NAME'])
|
||||
|
||||
with transaction.atomic():
|
||||
management.call_command('makemigrations','core', interactive=False)
|
||||
management.call_command('makemigrations','flatpages', interactive=False)
|
||||
management.call_command('migrate', interactive=False)
|
||||
|
Loading…
x
Reference in New Issue
Block a user