You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
335 B
15 lines
335 B
UP_SQL = """
|
|
ALTER TABLE query_history ENGINE=InnoDB;
|
|
ALTER TABLE test_labels ENGINE=InnoDB;
|
|
ALTER TABLE test_labels_tests ENGINE=InnoDB;
|
|
ALTER TABLE saved_queries ENGINE=InnoDB;
|
|
ALTER TABLE embedded_graphing_queries ENGINE=InnoDB;
|
|
"""
|
|
|
|
def migrate_up(manager):
|
|
manager.execute_script(UP_SQL)
|
|
|
|
|
|
def migrate_down(manager):
|
|
pass
|