summaryrefslogtreecommitdiffstats
path: root/setup/poolctrl_data.sql
diff options
context:
space:
mode:
authorBjörn Geiger2011-06-29 17:04:33 +0200
committerBjörn Geiger2011-06-29 17:04:33 +0200
commit3c8f2a7c26ca065ef33e85661d3e9e299b9aeb3f (patch)
tree29bdb7082d69cf52ff2003cc9efd6bad95616d41 /setup/poolctrl_data.sql
parentEventformular created (diff)
downloadpoolctrl-3c8f2a7c26ca065ef33e85661d3e9e299b9aeb3f.tar.gz
poolctrl-3c8f2a7c26ca065ef33e85661d3e9e299b9aeb3f.tar.xz
poolctrl-3c8f2a7c26ca065ef33e85661d3e9e299b9aeb3f.zip
Eventcategory nun in eigener Tabelle
Diffstat (limited to 'setup/poolctrl_data.sql')
-rw-r--r--setup/poolctrl_data.sql13
1 files changed, 10 insertions, 3 deletions
diff --git a/setup/poolctrl_data.sql b/setup/poolctrl_data.sql
index 9967aee..dd08c97 100644
--- a/setup/poolctrl_data.sql
+++ b/setup/poolctrl_data.sql
@@ -99,11 +99,18 @@ INSERT INTO `pbs_poolentries` (`poolentriesID`, `poolID`, `clientID`) VALUES
(9, 4, 9),
(10, 4, 10);
+-- Adding eventcategories
+INSERT INTO `poolctrl_eventcategory` (`eventcategoryID`, `title`) VALUES
+(1, 'Lecture'),
+(2, 'Private'),
+(3, 'Public'),
+(4, 'Maintenance');
+
-- Adding events
INSERT INTO `poolctrl_event` (`eventID`, `title`, `start`, `end`, `category`, `pbs_poolID`, `pbs_membershipID`, `pbs_bootosID`, `note`) VALUES
-(1, 'Systeme I', '2011-06-24 12:10:00', '2011-06-24 14:00:00', 'Vorlesung', 1, 1, 1, 'Systeme I Vorlesung'),
-(2, 'Systeme II', '2011-06-24 14:10:00', '2011-06-24 16:00:00', 'Vorlesung', 1, 1, 1, 'Systeme II Vorlesung'),
-(3, 'Systeme III', '2011-06-24 16:10:00', '2011-06-24 18:00:00', 'Vorlesung', 1, 1, 1, 'Systeme III Vorlesung');
+(1, 'Systeme I', '2011-06-24 12:10:00', '2011-06-24 14:00:00', '1', 1, 1, 1, 'Systeme I Vorlesung'),
+(2, 'Systeme II', '2011-06-24 14:10:00', '2011-06-24 16:00:00', '1', 1, 1, 1, 'Systeme II Vorlesung'),
+(3, 'Systeme III', '2011-06-24 16:10:00', '2011-06-24 18:00:00', '1', 1, 1, 1, 'Systeme III Vorlesung');
-- Adding eventreport
INSERT INTO `poolctrl_eventreport` (`reportID`, `report`, `eventID`) VALUES