VbzCart/tables/rstk req item minima

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:18, 25 November 2008 by Woozle (talk | contribs) (New page: ==About== category:VbzCart/tables * '''History''': ** '''2008-11-25''' migrated from MS Access ==SQL== <section begin=sql /><mysql>CREATE TABLE `rstk_req_item_minima` ( `ID_ItemType`...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • History:
    • 2008-11-25 migrated from MS Access

SQL

<mysql>CREATE TABLE `rstk_req_item_minima` (

 `ID_ItemType` INT NOT NULL COMMENT "ittyps.ID of item type with restriction",
 `ID_Supplier` INT NOT NULL COMMENT "cat_supp.ID of supplier",
 `QtyMin`      INT DEFAULT NULL COMMENT "minimum qty; NULL means 1",
 `QtyMult`     INT DEFAULT NULL COMMENT "qty multiples; NULL means 1",

PRIMARY KEY(`ID_ItemType`,`ID_Supplier`) )

ENGINE = MYISAM;</mysql>