Difference between revisions of "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
Jump to navigation Jump to search
(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`...)
 
(No difference)

Latest revision as of 23:18, 25 November 2008

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>