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.
|
UP_SQL = """
|
|
ALTER TABLE autotests_dependency_labels ENGINE=InnoDB;
|
|
ALTER TABLE jobs_dependency_labels ENGINE=InnoDB;
|
|
"""
|
|
|
|
def migrate_up(manager):
|
|
manager.execute_script(UP_SQL)
|
|
|
|
|
|
def migrate_down(manager):
|
|
pass
|