summaryrefslogtreecommitdiff
path: root/tko/migrations/020_widen_hostname_field.py
blob: ccdec84684d2acea2003a82a11454bac470bc8da (plain)
1
2
3
4
5
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);")