Ferreteria/sql/user group: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(Created page with "==About== * '''Purpose''': a list of access-control groups to which users can belong * '''Used by''': {{l/same|user_x_ugroup}} * '''History''': ** '''2013-11-27''' written ==S...")
 
m (Woozle moved page VbzCart/tables/ugroup to Ferreteria/sql/user group without leaving a redirect: this has been a ferreteria table for awhile now too)
(No difference)

Revision as of 00:34, 27 January 2017

About

  • Purpose: a list of access-control groups to which users can belong
  • Used by: user_x_ugroup
  • History:
    • 2013-11-27 written

SQL

<mysql>CREATE TABLE `ugroup` (

 `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 ugroup was created",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>