blob: a628d10de6a17ec957c70d52c6b24e31b414d1e1 [file] [log] [blame]
JOB_TO_CLIENT_JOB = """UPDATE tests SET test='CLIENT_JOB' WHERE test='JOB';"""
CLIENT_JOB_TO_JOB = """UPDATE tests SET test='JOB' WHERE test='CLIENT_JOB';"""
def migrate_up(manager):
manager.execute_script(JOB_TO_CLIENT_JOB)
def migrate_down(manager):
manager.execute_script(CLIENT_JOB_TO_JOB)