Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: frontend/migrations/055_ensure_invalidated_test_label_exists.py

Issue 1595019: Merge remote branch 'origin/upstream' into tempbranch (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 UP_SQL = """
2 ALTER TABLE tko_test_labels
3 ADD CONSTRAINT tko_test_labels_unique
4 UNIQUE INDEX (name);
5
6 INSERT IGNORE INTO tko_test_labels (name, description)
7 VALUES ('invalidated', '');
8 """
9
10 DOWN_SQL = """
11 ALTER TABLE tko_test_labels
12 DROP INDEX tko_test_labels_unique;
13 """
OLDNEW
« no previous file with comments | « frontend/client/src/autotest/tko/TkoUtils.java ('k') | frontend/migrations/056_planner_global_support.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698