forked from Wavyzz/dolibarr
added the desiredstock parameter in the SQL scripts
This commit is contained in:
@@ -31,6 +31,8 @@ create table llx_fichinter_extrafields
|
|||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|
||||||
ALTER TABLE llx_fichinter_extrafields ADD INDEX idx_ficheinter_extrafields (fk_object);
|
ALTER TABLE llx_fichinter_extrafields ADD INDEX idx_ficheinter_extrafields (fk_object);
|
||||||
|
ALTER TABLE llx_product ADD COLUMN desiredstock integer DEFAULT 0;
|
||||||
|
|
||||||
|
|
||||||
create table llx_commandedet_extrafields
|
create table llx_commandedet_extrafields
|
||||||
(
|
(
|
||||||
|
|||||||
@@ -70,5 +70,6 @@ create table llx_product
|
|||||||
canvas varchar(32) DEFAULT NULL,
|
canvas varchar(32) DEFAULT NULL,
|
||||||
finished tinyint DEFAULT NULL,
|
finished tinyint DEFAULT NULL,
|
||||||
hidden tinyint DEFAULT 0, -- Need permission see also hidden products
|
hidden tinyint DEFAULT 0, -- Need permission see also hidden products
|
||||||
import_key varchar(14) -- Import key
|
import_key varchar(14), -- Import key
|
||||||
|
desiredstock integer DEFAULT 0
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Reference in New Issue
Block a user