Difference between revisions of "Database Table: zip"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Updating: Format, flag dropped)
Line 1: Line 1:
{{Database Table|name=zip|table type=global|need desc=1|needs work=dropped|repo=dw-free}}
+
{{Database Table|name=zip|table type=global|need desc=1|removed=1|removed in=686ffe7495de|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Revision as of 00:28, 5 October 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset 686ffe7495de [1]
This is a global table.

Definition

CREATE TABLE zip (
    zip VARCHAR(5) NOT NULL DEFAULT '',
    state CHAR(2) NOT NULL DEFAULT '',
    city VARCHAR(100) NOT NULL DEFAULT '',
 
    PRIMARY KEY  (zip),
    KEY (state)
) PACK_KEYS=1

Relationships