VbzCart/tables/cust emails

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | tables
Revision as of 19:36, 9 July 2009 by Woozle (talk | contribs) (moved from "customer tables" page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • History:
    • 2009-07-09 moved to separate wiki page; no design changes

SQL

<mysql>CREATE TABLE `cust_emails` (

 `ID`         INT NOT NULL AUTO_INCREMENT,
 `Name`       VARCHAR(31) COMMENT "human-assigned name for this address (work, home...)",
 `ID_Cust`    INT COMMENT "core_custs.ID",
 `Email`      VARCHAR(255) NOT NULL COMMENT "the email address itself",
 `isActive`   BOOL DEFAULT FALSE COMMENT "NO=former address; do not use",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>