1def migrate_up(mgr): 2 mgr.execute("alter table tests modify column test varchar(60);") 3 4def migrate_down(mgr): 5 mgr.execute("alter table tests modify column test varchar(30);") 6