2
0
forked from Wavyzz/dolibarr

added the desiredstock parameter in the SQL scripts

This commit is contained in:
Cédric Salvador
2013-05-30 16:58:23 +02:00
parent e36613f0f0
commit aae8a62368
2 changed files with 4 additions and 1 deletions

View File

@@ -31,6 +31,8 @@ create table llx_fichinter_extrafields
) ENGINE=innodb;
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
(

View File

@@ -70,5 +70,6 @@ create table llx_product
canvas varchar(32) DEFAULT NULL,
finished tinyint DEFAULT NULL,
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;