Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
a1ae931843904c1b258e0fbd73276c966ce3a70d
/
.
/
tko
/
migrations
/
007_widen_reason_field.py
blob: aae2a44edc748e7c7b0e7bc43bf8075d60f3eeca [
file
] [
log
] [
blame
]
def
migrate_up
(
mgr
):
mgr
.
execute
(
"alter table tests modify column reason varchar(1024);"
)
def
migrate_down
(
mgr
):
mgr
.
execute
(
"alter table tests modify column reason varchar(100);"
)