Ferreteria/sql/user permit

From Woozle Writes Code
< Ferreteria‎ | sql
Revision as of 14:55, 27 November 2013 by htyp>Woozle (Created page with "==About== * '''Purpose''': a list of access permissions to that groups (and therefore users) can have * '''Used by''': {{l/same|user_x_uperm}} * '''History''': ** '''2013-11-2...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: a list of access permissions to that groups (and therefore users) can have
  • Used by: user_x_uperm
  • History:
    • 2013-11-27 written

SQL

<mysql>CREATE TABLE `ugroup` (

 `ID`       INT              NOT NULL AUTO_INCREMENT,
 `Name`     VARCHAR(31)      NOT NULL COMMENT "name of permission",
 `Descr`    VARCHAR(255) DEFAULT NULL COMMENT "description/usage",
 `WhenCreated` DATETIME      NOT NULL COMMENT "when this uperm was created",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>