VbzCart/docs/tables/rstk req item minima: Difference between revisions
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`...) |
m (Woozle moved page VbzCart/VbzCart/tables/rstk req item minima to VbzCart/docs/tables/rstk req item minima without leaving a redirect: part 4/5) |
(No difference)
|
Latest revision as of 01:57, 25 February 2024
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 />