Difference between revisions of "Database Table: codes"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#set:name=codes|clustered=false}}
+
{{Database Table|name=codes|table type=global|repo=dw-free}}
 
[[Description::This table stores coded values for a number of lists, including countries, states/provinces, and certain sets of colors. See upgrading/base-data.sql for initial content.]]
 
[[Description::This table stores coded values for a number of lists, including countries, states/provinces, and certain sets of colors. See upgrading/base-data.sql for initial content.]]
 
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE codes (
 
CREATE TABLE codes (
  type varchar(10) NOT NULL default '',
+
    type varchar(10) NOT NULL default '',
  code varchar(7) NOT NULL default '',
+
    code varchar(7) NOT NULL default '',
  item varchar(80) default NULL,
+
    item varchar(80) default NULL,
  sortorder smallint(6) NOT NULL default '0',
+
    sortorder smallint(6) NOT NULL default '0',
  PRIMARY KEY  (type,code)
+
 
 +
    PRIMARY KEY  (type,code)
 
) PACK_KEYS=1
 
) PACK_KEYS=1
 
</source>
 
</source>
 
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 16:01, 22 July 2010

This is a global table. This table stores coded values for a number of lists, including countries, states/provinces, and certain sets of colors. See upgrading/base-data.sql for initial content.

Definition

CREATE TABLE codes (
    TYPE VARCHAR(10) NOT NULL DEFAULT '',
    code VARCHAR(7) NOT NULL DEFAULT '',
    item VARCHAR(80) DEFAULT NULL,
    sortorder SMALLINT(6) NOT NULL DEFAULT '0',
 
    PRIMARY KEY  (TYPE,code)
) PACK_KEYS=1

Relationships