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