Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
a1ae931843904c1b258e0fbd73276c966ce3a70d
/
.
/
tko
/
migrations
/
130_modify_test_attributes_length.py
blob: 8417ec3456ec3d279cd9c255357f42d9c0cbc63d [
file
] [
log
] [
blame
]
def
migrate_up
(
mgr
):
mgr
.
execute
(
"alter table tko_test_attributes modify column attribute varchar(50);"
)
def
migrate_down
(
mgr
):
mgr
.
execute
(
"alter table tko_test_attributes modify column attribute varchar(30);"
)