Sign in
android
/
platform
/
external
/
autotest
/
987bee56f1307432b3c391d3e51fd2558e6af4ca
/
.
/
tko
/
migrations
/
019_widen_test_name_field.py
blob: 888619c973ef27b7bde1b419dcfc58be2bdddb26 [
file
] [
log
] [
blame
]
def
migrate_up
(
mgr
):
mgr
.
execute
(
"alter table tests modify column test varchar(60);"
)
def
migrate_down
(
mgr
):
mgr
.
execute
(
"alter table tests modify column test varchar(30);"
)