Sign in
chromium
/
chromiumos
/
third_party
/
autotest
/
d2103cc4cedd79a8e3218028504cbc2df1d3d9f4
/
.
/
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);"
)