summaryrefslogtreecommitdiff
path: root/tko/migrations/027_user_created_test_attributes.py
blob: 05767cbc9908a71fc19e3e17cf11a9cbdf6cd376 (plain)
1
2
3
4
5
6
7
8
9
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;
"""