Skip to content

Commit

Permalink
Turn SQL into individual inserts
Browse files Browse the repository at this point in the history
  • Loading branch information
Digant C Kasundra committed May 14, 2015
1 parent 6bd50f1 commit c5bd80f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/sample_data/sample_data1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ INSERT INTO event_types
VALUES
(1,'system-reboot','required','This system requires a reboot.');

INSERT INTO event_types
VALUES
(2,'system-reboot','completed','This system rebooted.');

INSERT INTO event_types
VALUES
(3,'system-maintenance','required','This system requires maintenance.');

INSERT INTO event_types
VALUES
(4,'system-maintenance','completed','System maintenance completed.');

INSERT INTO fates
VALUES
(1,1,2,'A system that needs a reboot can be cleared by rebooting the machine.');

0 comments on commit c5bd80f

Please sign in to comment.