Fixed issues with db schema files

This commit is contained in:
2011-12-20 21:51:30 +00:00
parent 21e8f2b7d0
commit 1b69192527
2 changed files with 6 additions and 7 deletions

View File

@@ -77,7 +77,6 @@ INSERT INTO `group` (`id`, `name`, `description`) VALUES
-- --
INSERT INTO `usergroup` (`id`, `user`, `group`, `added`) VALUES INSERT INTO `usergroup` (`id`, `user`, `group`, `added`) VALUES
(1, 1, 1, 1324211572),
(2, 2, 2, 1324211572); (2, 2, 2, 1324211572);
-- --
@@ -85,15 +84,15 @@ INSERT INTO `usergroup` (`id`, `user`, `group`, `added`) VALUES
-- --
INSERT INTO `permission` (`id`, `name`, `description`) VALUES INSERT INTO `permission` (`id`, `name`, `description`) VALUES
(2, 'Update Status Boards', 'Permission to add/edit/delete any service or site.'); (2, 'Update Status Boards', 'Permission to add/edit/delete any service or site.'),
(3, 'Update Incidents', 'Permission to create and update the status of any incident.'), (3, 'Update Incidents', 'Permission to create and update the status of any incident.'),
(4, 'View Status Boards', 'Permission to view the status of all services and sites, and details of any incident.'), (4, 'View Status Boards', 'Permission to view the status of all services and sites, and details of any incident.');
-- --
-- Dumping data for table `grouppermissions` -- Dumping data for table `grouppermission`
-- --
INSERT INTO `grouppermissions` (`id`, `group`, `permission`, `added`) VALUES INSERT INTO `grouppermission` (`id`, `group`, `permission`, `added`) VALUES
(2, 1, 2, 1324211935), (2, 1, 2, 1324211935),
(3, 1, 3, 1324211935), (3, 1, 3, 1324211935),
(4, 1, 4, 1324211935), (4, 1, 4, 1324211935),

View File

@@ -302,7 +302,7 @@ INSERT INTO `permission` (`id`, `name`, `description`) VALUES
-- --
-- Table structure for table `grouppermissions` -- Table structure for table `grouppermission`
-- --
DROP TABLE IF EXISTS `grouppermission`; DROP TABLE IF EXISTS `grouppermission`;
@@ -318,7 +318,7 @@ CREATE TABLE IF NOT EXISTS `grouppermission` (
-- Dumping data for table `grouppermissions` -- Dumping data for table `grouppermissions`
-- --
INSERT INTO `grouppermissions` (`id`, `group`, `permission`, `added`) VALUES INSERT INTO `grouppermission` (`id`, `group`, `permission`, `added`) VALUES
(1, 1, 1, 1324211935); (1, 1, 1, 1324211935);
-- --