Difference between revisions of "Database Table: statkeylist"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with '{{Database Table|name=statkeylist|table type=global}} Category:Database Tables Needing Description = Definition = <source lang="sql"> CREATE TABLE statkeylist ( statkeyid…')
(No difference)

Revision as of 12:41, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table.

Definition

CREATE TABLE statkeylist (
    statkeyid  INT UNSIGNED NOT NULL AUTO_INCREMENT,
    name       VARCHAR(255) DEFAULT NULL,
 
    PRIMARY KEY (statkeyid),
    UNIQUE KEY (name)
)

Relationships