blob: 888619c973ef27b7bde1b419dcfc58be2bdddb26 [file] [log] [blame]
def migrate_up(mgr):
mgr.execute("alter table tests modify column test varchar(60);")
def migrate_down(mgr):
mgr.execute("alter table tests modify column test varchar(30);")