Skip to content

Commit

Permalink
Changing format of SQL sample data
Browse files Browse the repository at this point in the history
  • Loading branch information
Digant C Kasundra committed May 8, 2015
1 parent 3ed3ccb commit 5c74ad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sample_data/sample_data1.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
INSERT INTO `event_types` (`id`, `category`, `state`, `description`)
INSERT INTO 'event_types' ('id', 'category', 'state', 'description')
VALUES
(1,'system-reboot','required','This system requires a reboot.'),
(2,'system-reboot','completed','This system rebooted.'),
(3,'system-maintenance','required','This system requires maintenance.'),
(4,'system-maintenance','completed','System maintenance completed.');

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

0 comments on commit 5c74ad2

Please sign in to comment.