summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2006-08-18 20:11:59 +0200
committerOliver Tappe2006-08-18 20:11:59 +0200
commit2ffaef3d3b580a5d8e541893a87ebd70d936e679 (patch)
treebc2d31518ed8b889a6713c4071b56394723a57fe /config-db
parent* fixed two typos and remove superfluous debug output (diff)
downloadcore-2ffaef3d3b580a5d8e541893a87ebd70d936e679.tar.gz
core-2ffaef3d3b580a5d8e541893a87ebd70d936e679.tar.xz
core-2ffaef3d3b580a5d8e541893a87ebd70d936e679.zip
* added missing creation of table group_system_ref
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@313 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rw-r--r--config-db/ODLX/DBSchema.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/config-db/ODLX/DBSchema.pm b/config-db/ODLX/DBSchema.pm
index 3d4ba843..45c78044 100644
--- a/config-db/ODLX/DBSchema.pm
+++ b/config-db/ODLX/DBSchema.pm
@@ -107,6 +107,7 @@ $DbSchema = {
'name:s.128', # name of group
'descr:s.1024', # internal description (for admins)
'priority:i', # priority, used for order in group-list
+ # (from 0-lowest to 10-highest)
@sharedAttributes,
],
'group_client_ref' => [
@@ -209,6 +210,11 @@ $DbSchema = {
'table' => 'group_client_ref',
'cols' => $DbSchema->{'tables'}->{'group_client_ref'},
},
+ {
+ 'cmd' => 'add-table',
+ 'table' => 'group_system_ref',
+ 'cols' => $DbSchema->{'tables'}->{'group_system_ref'},
+ },
],
);