Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
a1ae931843904c1b258e0fbd73276c966ce3a70d
/
.
/
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);"
)