Ferreteria/sql/ugroup x upermit: Difference between revisions
< Ferreteria | sql
Jump to navigation
Jump to search
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) |
(post-move adjustments) |
||
Line 1: | Line 1: | ||
==About== | ==About== | ||
* '''Purpose''': ugroup-to- | * '''Purpose''': ugroup-to-upermit assignment map | ||
* '''Requires''': {{l/same| | * '''Requires''': {{l/same|user_group}}, {{l/same|user_permit}} | ||
* '''History''': | * '''History''': | ||
** '''2013-11-27''' written | ** '''2013-11-27''' written | ||
** '''2017-01-26''' moved to Ferreteria, renamed from ugroup_x_uperm to ugroup_x_upermit | |||
*** changed from MyISAM to InnoDB | |||
*** renamed ID_UGrp to ID_Group | |||
*** renamed ID_UPrm to ID_Permit | |||
==SQL== | ==SQL== | ||
<mysql>CREATE TABLE `ugroup_x_uperm` ( | <mysql>CREATE TABLE `ugroup_x_uperm` ( | ||
` | `ID_Group` INT NOT NULL, | ||
` | `ID_Permit` INT NOT NULL, | ||
PRIMARY KEY(` | PRIMARY KEY(`ID_Group`,`ID_Permit`) | ||
) ENGINE= | ) ENGINE=InnoDB;</mysql> |
Revision as of 00:50, 27 January 2017
About
- Purpose: ugroup-to-upermit assignment map
- Requires: user_group, user_permit
- History:
- 2013-11-27 written
- 2017-01-26 moved to Ferreteria, renamed from ugroup_x_uperm to ugroup_x_upermit
- changed from MyISAM to InnoDB
- renamed ID_UGrp to ID_Group
- renamed ID_UPrm to ID_Permit
SQL
<mysql>CREATE TABLE `ugroup_x_uperm` (
`ID_Group` INT NOT NULL, `ID_Permit` INT NOT NULL, PRIMARY KEY(`ID_Group`,`ID_Permit`)
) ENGINE=InnoDB;</mysql>