Changeset 196795 in webkit


Ignore:
Timestamp:
Feb 18, 2016, 8:25:12 PM (10 years ago)
Author:
rniwa@webkit.org
Message:

Revert an unintended change made in the previous commit.

  • init-database.sql:
Location:
trunk/Websites/perf.webkit.org
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/perf.webkit.org/ChangeLog

    r196794 r196795  
     12016-02-18  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Revert an unintended change made in the previous commit.
     4
     5        * init-database.sql:
     6
    172016-02-18  Ryosuke Niwa  <rniwa@webkit.org>
    28
  • trunk/Websites/perf.webkit.org/init-database.sql

    r196794 r196795  
    226226CREATE TABLE analysis_test_groups (
    227227    testgroup_id serial PRIMARY KEY,
    228     testgroup_task integer NOT NULL REFERENCES analysis_tasks ON DELETE CASCADE,
     228    testgroup_task integer REFERENCES analysis_tasks NOT NULL,
    229229    testgroup_name varchar(256),
    230230    testgroup_author varchar(256),
     
    247247    request_platform integer REFERENCES platforms NOT NULL,
    248248    request_test integer REFERENCES tests NOT NULL,
    249     request_group integer NOT NULL REFERENCES analysis_test_groups ON DELETE CASCADE,
     249    request_group integer REFERENCES analysis_test_groups NOT NULL,
    250250    request_order integer NOT NULL,
    251251    request_root_set integer REFERENCES root_sets NOT NULL,
Note: See TracChangeset for help on using the changeset viewer.