summaryrefslogtreecommitdiffstats
path: root/pbs-data.sql
diff options
context:
space:
mode:
Diffstat (limited to 'pbs-data.sql')
-rw-r--r--pbs-data.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/pbs-data.sql b/pbs-data.sql
index 01ec4a1..f80c8eb 100644
--- a/pbs-data.sql
+++ b/pbs-data.sql
@@ -64,8 +64,11 @@ INSERT INTO `pbs_poolentries` (`poolentriesID`, `poolID`, `clientID`) VALUES
(10, 3, 10);
-- Insert Data for Sessions
+INSERT INTO `pbs`.`pbs_config` (`configID`, `title`, `groupID`, `membershipID`, `shellscript`, `created`) VALUES
+(NULL, 'Config 1', '1', '1', 'Shellscirpt', UNIX_TIMESTAMP());
+
INSERT INTO `pbs`.`pbs_bootos` (`bootosID`, `configID`, `groupID`, `membershipID`, `title`, `description`, `path_init`, `path_kernel`, `defaultkcl`, `created`, `expires`, `public`) VALUES
-(1, NULL, 1, 1, 'BootOS 1', 'Description', '', '', '', '', NULL, 0);
+(1, 1, 1, 1, 'BootOS 1', 'Description', '', '', '', '', NULL, 0);
INSERT INTO `pbs_bootiso` (`bootisoID`, `title`, `membershipID`, `groupID`, `path`, `serialnumber`, `created`, `expires`, `public`) VALUES
(1, 'BootISO 1', 1, 1, '', 1337, '', NULL, 1),
@@ -75,3 +78,4 @@ INSERT INTO `pbs_person` (`personID`, `title`, `name`, `firstname`, `street`, `h
(3, '1', '2', '3', '4', '5', '6', '7', NULL, '1299612370', 'test', NULL, '4207acba08cadccc397e2302a55b339a', 'f21ee663b17bcefc6868694dffda602a');
+