Ferreteria/v0.5/sql/user permit: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | sql
Jump to navigation Jump to search
(Created page with "==SQL== <syntaxhighlight lang=mysql> CREATE TABLE `user_permit` ( `ID` int NOT NULL AUTO_INCREMENT, `Name` varchar(31) NOT NULL COMMENT 'name of perm...")
 
m (1 revision imported: moving this project here)
 
(No difference)

Latest revision as of 16:45, 22 May 2022

SQL

CREATE TABLE `user_permit` (
  `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=InnoDB;