Home | History | Annotate | Download | only in migrations
      1 def migrate_up(mgr):
      2     mgr.execute("alter table tests modify column test varchar(60);")
      3 
      4 def migrate_down(mgr):
      5     mgr.execute("alter table tests modify column test varchar(30);")
      6