Sign in
android
/
platform
/
external
/
autotest
/
987bee56f1307432b3c391d3e51fd2558e6af4ca
/
.
/
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);"
)