Difference between revisions of "Database Table: priv packages content"
From Dreamwidth Notes
(Created page with 'priv_packages_content =Definition= <source lang="sql"> CREATE TABLE priv_packages_content ( pkgid int(10) unsigned NOT NULL auto_increment, privn...') |
Exor674Bot (Talk | contribs) (Robot: Updating: Format) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{Database Table|name=priv_packages_content|table type=global|need desc=1|repo=dw-free}} | |
− | =Definition= | + | = Definition = |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE priv_packages_content ( | CREATE TABLE priv_packages_content ( | ||
− | + | pkgid int(10) unsigned NOT NULL auto_increment, | |
− | + | privname varchar(20) NOT NULL, | |
− | + | privarg varchar(40), | |
− | + | ||
+ | PRIMARY KEY (pkgid, privname, privarg) | ||
) | ) | ||
</source> | </source> | ||
− | + | {{Database Table Footer}} | |
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 16:03, 22 July 2010
This is a global table.
Definition
CREATE TABLE priv_packages_content ( pkgid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, privname VARCHAR(20) NOT NULL, privarg VARCHAR(40), PRIMARY KEY (pkgid, privname, privarg) )