VbzCart/tables/cust names

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 13:04, 23 November 2011 by Woozle (talk | contribs) (added WhenEnt, WhenUpd)
Jump to navigation Jump to search

About

  • History:
    • 2009-07-09 moved to separate wiki page; no design changes
    • 2011-11-23 added WhenEnt, WhenUpd

SQL

<mysql>CREATE TABLE `cust_names` (

 `ID`         INT NOT NULL AUTO_INCREMENT,
 `WhenEnt`    DATETIME     NOT NULL COMMENT "date when record was first created",
 `WhenUpd`    DATETIME DEFAULT NULL COMMENT "date when record was last updated",
 `ID_Cust`    INT COMMENT "core_custs.ID",
 `Name`       VARCHAR(127) COMMENT "customer's name, for shipping label",
 `NameSrch`   VARCHAR(127) COMMENT "name with delimiters removed, for matching",
 `isActive`   BOOL DEFAULT FALSE COMMENT "NO=wrong spelling or name; use for searching",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>