summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schulthess2017-02-28 11:38:31 +0100
committerChristoph Schulthess2017-02-28 11:38:31 +0100
commitc61fed4cd0d3bb968bbea825e6375839104a7aa9 (patch)
treeeeb8928e545f2e134cff973e10e13d281e4ea498
parentMerge branch 'master' of git.openslx.org:openslx-ng/slx-admin into remote-debug (diff)
parent[main] Forgot install script update for list properties (diff)
downloadslx-admin-c61fed4cd0d3bb968bbea825e6375839104a7aa9.tar.gz
slx-admin-c61fed4cd0d3bb968bbea825e6375839104a7aa9.tar.xz
slx-admin-c61fed4cd0d3bb968bbea825e6375839104a7aa9.zip
Merge branch 'master' of git.openslx.org:openslx-ng/slx-admin into remote-debug
-rw-r--r--modules-available/main/install.inc.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules-available/main/install.inc.php b/modules-available/main/install.inc.php
index 4c9d4baa..e364a905 100644
--- a/modules-available/main/install.inc.php
+++ b/modules-available/main/install.inc.php
@@ -26,6 +26,14 @@ $res[] = tableCreate('property', "
KEY `dateline` (`dateline`)
");
+$res[] = tableCreate('property_list', "
+ `name` varchar(50) NOT NULL,
+ `dateline` int(10) unsigned NOT NULL DEFAULT '0',
+ `value` text NOT NULL,
+ KEY (`name`),
+ KEY `dateline` (`dateline`)
+");
+
$res[] = tableCreate('user', "
`userid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`login` varchar(100) NOT NULL,