summaryrefslogtreecommitdiffstats
path: root/config-db/ODLX/DBSchema.pm
diff options
context:
space:
mode:
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
+ ],
},
};