Title: [196795] trunk/Websites/perf.webkit.org
- Revision
- 196795
- Author
- [email protected]
- Date
- 2016-02-18 20:25:12 -0800 (Thu, 18 Feb 2016)
Log Message
Revert an unintended change made in the previous commit.
* init-database.sql:
Modified Paths
Diff
Modified: trunk/Websites/perf.webkit.org/ChangeLog (196794 => 196795)
--- trunk/Websites/perf.webkit.org/ChangeLog 2016-02-19 04:18:27 UTC (rev 196794)
+++ trunk/Websites/perf.webkit.org/ChangeLog 2016-02-19 04:25:12 UTC (rev 196795)
@@ -1,5 +1,11 @@
2016-02-18 Ryosuke Niwa <[email protected]>
+ Revert an unintended change made in the previous commit.
+
+ * init-database.sql:
+
+2016-02-18 Ryosuke Niwa <[email protected]>
+
Perf dashboard should let user cancel pending A/B testing and hide failed ones
https://bugs.webkit.org/show_bug.cgi?id=154433
Modified: trunk/Websites/perf.webkit.org/init-database.sql (196794 => 196795)
--- trunk/Websites/perf.webkit.org/init-database.sql 2016-02-19 04:18:27 UTC (rev 196794)
+++ trunk/Websites/perf.webkit.org/init-database.sql 2016-02-19 04:25:12 UTC (rev 196795)
@@ -225,7 +225,7 @@
CREATE TABLE analysis_test_groups (
testgroup_id serial PRIMARY KEY,
- testgroup_task integer NOT NULL REFERENCES analysis_tasks ON DELETE CASCADE,
+ testgroup_task integer REFERENCES analysis_tasks NOT NULL,
testgroup_name varchar(256),
testgroup_author varchar(256),
testgroup_created_at timestamp NOT NULL DEFAULT (CURRENT_TIMESTAMP AT TIME ZONE 'UTC'),
@@ -246,7 +246,7 @@
request_triggerable integer REFERENCES build_triggerables NOT NULL,
request_platform integer REFERENCES platforms NOT NULL,
request_test integer REFERENCES tests NOT NULL,
- request_group integer NOT NULL REFERENCES analysis_test_groups ON DELETE CASCADE,
+ request_group integer REFERENCES analysis_test_groups NOT NULL,
request_order integer NOT NULL,
request_root_set integer REFERENCES root_sets NOT NULL,
request_status build_request_status_type NOT NULL DEFAULT 'pending',
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes