VbzCart/tables/ord msg media

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 23:32, 23 September 2010 by Woozle (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Used by: ord_msg
  • History:
    • 2009-07-09 Adapted from MS Access (was [Message Media])

SQL

<mysql>CREATE TABLE `ord_msg_media` (

 `ID`    INT             NOT NULL AUTO_INCREMENT,
 `Abbr`  VARCHAR(15)     NOT NULL COMMENT "abbreviation for combo boxes and lists",
 `Descr` VARCHAR(63) DEFAULT NULL COMMENT "longer description",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;

INSERT INTO `ord_msg_media` VALUES

(1,'OrdInst','Instructions in submitted order'),
(2,'PkSlip','Packing slip'),
(3,'Email','Email'),
(4,'Phone','Phone call'),
(5,'Mail','Snail mail'),
(6,'Fax','Faxed message'),
(7,'AddrLbl','Shipping label (for delivery instructions)'),
(8,'Internal','stored in this database only'),
(9,'Unknown','not sure - was NULL in old db');</mysql>