VbzCart/tables/ord pull type

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 16:16, 6 March 2016 by Woozle (talk | contribs) (changed field name; tidying)
Jump to navigation Jump to search

About

  • Used by: ord_pull
  • History:
    • 2009-07-09 adapted from MS Access (was: [Order Pull Types])
    • 2016-03-06 changed Notes to Reason, because it's actually kind of important

SQL

<mysql>CREATE TABLE `ord_pull_type` (

 `ID`     INT              NOT NULL AUTO_INCREMENT,
 `Name`   VARCHAR(31)      NOT NULL COMMENT "brief name for this pull type",
 `Reason` VARCHAR(255) DEFAULT NULL COMMENT "reason why this type would be used",

PRIMARY KEY(`ID`) ) ENGINE = MYISAM;</mysql>