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

Side by Side Diff: frontend/migrations/057_add_planner_triage_actions.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
« no previous file with comments | « frontend/migrations/056_planner_global_support.py ('k') | frontend/planner/execution_engine.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 UP_SQL = """
2 ALTER TABLE planner_test_runs
3 ADD COLUMN invalidated TINYINT(1) DEFAULT FALSE;
4
5 ALTER TABLE planner_test_jobs
6 ADD COLUMN requires_rerun TINYINT(1) DEFAULT FALSE;
7 """
8
9 DOWN_SQL = """
10 ALTER TABLE planner_test_jobs
11 DROP COLUMN requires_rerun;
12
13 ALTER TABLE planner_test_runs
14 DROP COLUMN invalidated;
15 """
OLDNEW
« no previous file with comments | « frontend/migrations/056_planner_global_support.py ('k') | frontend/planner/execution_engine.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698