1def migrate_up(mgr): 2 mgr.execute("alter table tko_test_attributes modify column attribute varchar(50);") 3 4def migrate_down(mgr): 5 mgr.execute("alter table tko_test_attributes modify column attribute varchar(30);") 6