SEARCH:
Previous: table Next: table.column

table.group



A table.group definition assigns security priveleges to a group for a table. This definition is nested inside of the table definition. Assignments made in this way are final, they override assignments made by group defaults and group.module and module.group defaults.

Example
table table_id:
   # ... table properties assigned here...
   # Define security for a particular group on this table
   group group_id:
      permsel: Y/N
      permins: Y/N
      permupd: Y/N
      permdel: Y/N 
      nomenu:  Y/N

Properties

group group_id. The first line of a table.group definition begins with the keyword 'table', a space, and then the unique group name (group_id) followed by a colon.

permsel. The group's SELECT permission for this table.

permins. The group's INSERT permission for this table.

permupd. The group's UPDATE permission for this table.

permdel. The group's DELETE permission for this table.

nomenu. This table should not appear on the menu for this group.

Previous: table Next: table.column