Ferreteria/sql/ugroup x upermit: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(Created page with "==About== * '''Purpose''': ugroup-to-uperm assignment map * '''Requires''': {{l/same|ugroup}}, {{l/same|uperm}} * '''History''': ** '''2013-11-27''' written ==SQL== <mysql>CRE...")
 
m (Woozle moved page VbzCart/tables/ugroup x uperm to Ferreteria/sql/ugroup x upermit without leaving a redirect: and finally, this is also part of Ferreteria user management)
(No difference)

Revision as of 00:47, 27 January 2017

About

  • Purpose: ugroup-to-uperm assignment map
  • Requires: ugroup, uperm
  • History:
    • 2013-11-27 written

SQL

<mysql>CREATE TABLE `ugroup_x_uperm` (

 `ID_UGrp`  INT              NOT NULL,
 `ID_UPrm`  INT              NOT NULL,
 PRIMARY KEY(`ID_UGrp`,`ID_UPrm`)

) ENGINE=MyISAM;</mysql>