Difference between revisions of "Database Table: priv packages content"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use database table header template.)
(Robot: Updating: Format)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Database Table|name=priv_packages_content|table type=global}}
+
{{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,
+
    pkgid int(10) unsigned NOT NULL auto_increment,
  privname varchar(20) NOT NULL,
+
    privname varchar(20) NOT NULL,
  privarg varchar(40),
+
    privarg varchar(40),
  PRIMARY KEY (pkgid, privname, privarg)
+
 
 +
    PRIMARY KEY (pkgid, privname, privarg)
 
)
 
)
 
</source>
 
</source>
 
 
{{Database Table Footer}}
 
{{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)
)

Relationships