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.
8 lines
381 B
8 lines
381 B
def migrate_up(mgr):
|
|
mgr.execute("alter table test_attributes modify column value varchar(1024);")
|
|
mgr.execute("alter table iteration_attributes modify column value varchar(1024);")
|
|
|
|
def migrate_down(mgr):
|
|
mgr.execute("alter table test_attributes modify column value varchar(100);")
|
|
mgr.execute("alter table iteration_attributes modify column value varchar(100);")
|