VbzCart/docs/tables/rstk req item minima: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Jump to navigation Jump to search
imported>Woozle
(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)

Revision as of 23:18, 25 November 2008

About

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

SQL

<section begin=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>

<section end=sql />