Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
a1ae931843904c1b258e0fbd73276c966ce3a70d
/
.
/
tko
/
migrations
/
020_widen_hostname_field.py
blob: ccdec84684d2acea2003a82a11454bac470bc8da [
file
] [
log
] [
blame
]
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);"
)