Ferreteria/sql/user permit: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(unique key)
m (9 revisions imported: moving this project here)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
==About==
==About==
* '''Purpose''': a list of access permits (permissions) that groups (and therefore users) can have
* '''Purpose''': a list of access permits (permissions) that groups (and therefore users) can have
* '''Module''': {{l/ferreteria/module|users}}
* '''Used by''': {{l/same|ugroup_x_upermit}}
* '''Used by''': {{l/same|ugroup_x_upermit}}
* '''History''':
* '''History''':
Line 6: Line 7:
** '''2017-01-29''' moved from [[VbzCart]] to Ferreteria a few days ago; renamed from uperm to user_permit; changed MYISAM to InnoDB
** '''2017-01-29''' moved from [[VbzCart]] to Ferreteria a few days ago; renamed from uperm to user_permit; changed MYISAM to InnoDB
** '''2017-03-25''' added unique key for '''Name'''
** '''2017-03-25''' added unique key for '''Name'''
** '''2020-01-15''' added '''WhenEdited''' field
==SQL==
==SQL==
<mysql>CREATE TABLE `user_permit` (
<source lang=mysql>CREATE TABLE `user_permit` (
   `ID`      INT              NOT NULL AUTO_INCREMENT,
   `ID`      INT              NOT NULL AUTO_INCREMENT,
   `Name`    VARCHAR(31)      NOT NULL COMMENT "name of permission",
   `Name`    VARCHAR(31)      NOT NULL COMMENT "name of permission (permit)",
   `Descr`    VARCHAR(255) DEFAULT NULL COMMENT "description/usage",
   `Descr`    VARCHAR(255) DEFAULT NULL COMMENT "description/usage",
   `WhenCreated` DATETIME      NOT NULL COMMENT "when this uperm was created",
   `WhenCreated` DATETIME      NOT NULL COMMENT "when this permit was created",
  `WhenEdited`  DATETIME  DEFAULT NULL COMMENT "when permit was last modified",
   PRIMARY KEY(`ID`),
   PRIMARY KEY(`ID`),
   UNIQUE KEY `Name_UNIQUE` (`Name`)
   UNIQUE KEY `Name_UNIQUE` (`Name`)
)
)
ENGINE = InnoDB;</mysql>
ENGINE = InnoDB;</source>

Latest revision as of 16:42, 22 May 2022

About

  • Purpose: a list of access permits (permissions) that groups (and therefore users) can have
  • Module: Template:L/ferreteria/module
  • Used by: ugroup_x_upermit
  • History:
    • 2013-11-27 written
    • 2017-01-29 moved from VbzCart to Ferreteria a few days ago; renamed from uperm to user_permit; changed MYISAM to InnoDB
    • 2017-03-25 added unique key for Name
    • 2020-01-15 added WhenEdited field

SQL

CREATE TABLE `user_permit` (
  `ID`       INT              NOT NULL AUTO_INCREMENT,
  `Name`     VARCHAR(31)      NOT NULL COMMENT "name of permission (permit)",
  `Descr`    VARCHAR(255) DEFAULT NULL COMMENT "description/usage",
  `WhenCreated` DATETIME      NOT NULL COMMENT "when this permit was created",
  `WhenEdited`  DATETIME  DEFAULT NULL COMMENT "when permit was last modified",
  PRIMARY KEY(`ID`),
  UNIQUE KEY `Name_UNIQUE` (`Name`)
)
ENGINE = InnoDB;