Database Table: zip

From Dreamwidth Notes
Revision as of 20:38, 3 October 2010 by Exor674Bot (Talk | contribs)

Jump to: navigation, search

This is a global table.This database table is flagged as needing checking for the reason: dropped

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