Ferreteria/sql/user group
< Ferreteria | sql
Jump to navigation
Jump to search
About
- Purpose: a list of access-control groups to which users can belong
- Used by: user_x_ugroup
- History:
- 2013-11-27 written
- 2017-01-26 moved to Ferreteria, renamed from ugroup to user_group, changed from MYISAM to INNODB
SQL
<mysql>CREATE TABLE `user_group` (
`ID` INT NOT NULL AUTO_INCREMENT, `Name` VARCHAR(31) NOT NULL COMMENT "name of group", `Descr` VARCHAR(255) DEFAULT NULL COMMENT "description/usage", `WhenCreated` DATETIME NOT NULL COMMENT "when group was created", PRIMARY KEY(`ID`)
) ENGINE = INNODB;</mysql>