//Stock : Update Warehouse management - use of new adminController - add the possibility to associate shops and carriers to a warehouse
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9389 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -2002,6 +2002,14 @@ CREATE TABLE `PREFIX_warehouse_shop` (
|
||||
KEY `id_shop` (`id_shop`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_warehouse_carrier` (
|
||||
`id_carrier` INT(11) UNSIGNED NOT NULL,
|
||||
`id_warehouse` INT(11) UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (`id_warehouse`, `id_carrier`),
|
||||
KEY `id_warehouse` (`id_warehouse`),
|
||||
KEY `id_carrier` (`id_carrier`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_stock_available` (
|
||||
`id_stock_available` INT(11) UNSIGNED NOT NULL,
|
||||
`id_product` INT(11) UNSIGNED NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user