summaryrefslogtreecommitdiffstats
path: root/config-db/ODLX/DBSchema.pm
diff options
context:
space:
mode:
authorOliver Tappe2006-08-15 21:42:55 +0200
committerOliver Tappe2006-08-15 21:42:55 +0200
commita672837ea38476115e832580c73957f810a9f2b4 (patch)
tree0a0a43b321bd5de1462cd11b024f461010c4dcef /config-db/ODLX/DBSchema.pm
parentUbuntu 5.10: working (diff)
downloadcore-a672837ea38476115e832580c73957f810a9f2b4.tar.gz
core-a672837ea38476115e832580c73957f810a9f2b4.tar.xz
core-a672837ea38476115e832580c73957f810a9f2b4.zip
* completed group-related interface and implementation
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@298 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/ODLX/DBSchema.pm')
-rw-r--r--config-db/ODLX/DBSchema.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/config-db/ODLX/DBSchema.pm b/config-db/ODLX/DBSchema.pm
index 865e80b1..ff3fefb1 100644
--- a/config-db/ODLX/DBSchema.pm
+++ b/config-db/ODLX/DBSchema.pm
@@ -83,7 +83,7 @@ $DbSchema = {
@sharedAttributes,
],
'client' => [
- # a client is a PC booting via net
+ # a client is a PC booting via network
'id:pk', # primary key
'name:s.128', # official name of PC (e.g. as given by sticker
# on case)
@@ -114,6 +114,12 @@ $DbSchema = {
'group_id:fk', # foreign key
'client_id:fk', # foreign key
],
+ 'group_system_ref' => [
+ # groups referring to the systems each of their clients should
+ # offer for booting
+ 'group_id:fk', # foreign key
+ 'system_id:fk', # foreign key
+ ],
},
};