Home | History | Annotate | Download | only in migrations
      1 UP_SQL = """
      2 ALTER TABLE query_history ENGINE=InnoDB;
      3 ALTER TABLE test_labels ENGINE=InnoDB;
      4 ALTER TABLE test_labels_tests ENGINE=InnoDB;
      5 ALTER TABLE saved_queries ENGINE=InnoDB;
      6 ALTER TABLE embedded_graphing_queries ENGINE=InnoDB;
      7 """
      8 
      9 def migrate_up(manager):
     10     manager.execute_script(UP_SQL)
     11 
     12 
     13 def migrate_down(manager):
     14     pass
     15