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

Side by Side Diff: frontend/migrations/056_planner_global_support.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 CREATE TABLE planner_test_configs_skipped_hosts (
3 testconfig_id INT NOT NULL,
4 host_id INT NOT NULL,
5 PRIMARY KEY (testconfig_id, host_id)
6 ) ENGINE = InnoDB;
7
8 ALTER TABLE planner_test_configs_skipped_hosts
9 ADD CONSTRAINT planner_test_configs_skipped_hosts_testconfig_ibfk
10 FOREIGN KEY (testconfig_id) REFERENCES planner_test_configs (id);
11
12 ALTER TABLE planner_test_configs_skipped_hosts
13 ADD CONSTRAINT planner_test_configs_skipped_hosts_host_ibfk
14 FOREIGN KEY (host_id) REFERENCES afe_hosts (id);
15 """
16
17 DOWN_SQL = """
18 DROP TABLE IF EXISTS planner_test_configs_skipped_hosts;
19 """
OLDNEW
« no previous file with comments | « frontend/migrations/055_ensure_invalidated_test_label_exists.py ('k') | frontend/migrations/057_add_planner_triage_actions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698