Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
a1ae931843904c1b258e0fbd73276c966ce3a70d
/
.
/
tko
/
migrations
/
027_user_created_test_attributes.py
blob: 05767cbc9908a71fc19e3e17cf11a9cbdf6cd376 [
file
] [
log
] [
blame
]
UP_SQL
=
"""
ALTER TABLE test_attributes
ADD COLUMN id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
ADD COLUMN user_created bool NOT NULL DEFAULT FALSE;
"""
DOWN_SQL
=
"""
ALTER TABLE test_attributes DROP COLUMN user_created, DROP COLUMN id;
"""