6 lines
199 B
Python
6 lines
199 B
Python
|
|
def migrate_up(mgr):
|
||
|
|
mgr.execute("alter table machines modify column hostname varchar(700);")
|
||
|
|
|
||
|
|
def migrate_down(mgr):
|
||
|
|
mgr.execute("alter table machines modify column hostname varchar(100);")
|