VbzCart/docs/tables/ord pull type

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Revision as of 01:30, 10 July 2009 by imported>Woozle (New page: ==About== * '''Used by''': {{vbzcart|table|ord_pull}} * '''History''': ** '''2009-07-09''' adapted from MS Access (was: [Order Pull Types]) ==SQL== <section begin=sql /><mysql>CREATE TABLE...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Used by: Template:Vbzcart
  • History:
    • 2009-07-09 adapted from MS Access (was: [Order Pull Types])

SQL

<section begin=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",
 `Notes` VARCHAR(255) DEFAULT NULL COMMENT "usage notes",

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