2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-14 15:57:25 +00:00

No speedup for database init.

This commit is contained in:
Philip Sargent
2020-07-22 23:44:25 +01:00
parent 721341604c
commit a6ed0997e8

View File

@@ -85,7 +85,6 @@ def reinit_db():
else: else:
print(" - No database file found: " + currentdbname + " ..continuing, will create it.\n") print(" - No database file found: " + currentdbname + " ..continuing, will create it.\n")
else: else:
with transaction.atomic():
cursor = django.db.connection.cursor() cursor = django.db.connection.cursor()
cursor.execute("DROP DATABASE %s" % currentdbname) cursor.execute("DROP DATABASE %s" % currentdbname)
cursor.execute("CREATE DATABASE %s" % currentdbname) cursor.execute("CREATE DATABASE %s" % currentdbname)