Modif: augmentation de la capacit du champ "description"
This commit is contained in:
parent
84e6dd6fe1
commit
5626869fd6
@ -114,8 +114,8 @@ create table llx_product_det
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
fk_product integer DEFAULT 0 NOT NULL,
|
||||
lang varchar(5) DEFAULT 0 NOT NULL,
|
||||
label varchar(128),
|
||||
description varchar(255),
|
||||
label varchar(255),
|
||||
description text,
|
||||
note text
|
||||
)type=innodb;
|
||||
|
||||
@ -424,4 +424,7 @@ ALTER TABLE llx_categorie_product ADD CONSTRAINT fk_categorie_product_product_ro
|
||||
|
||||
ALTER TABLE llx_categorie_product ADD PRIMARY KEY (fk_categorie, fk_product);
|
||||
|
||||
|
||||
alter table llx_product modify label varchar(255) NOT NULL;
|
||||
alter table llx_product modify description text;
|
||||
alter table llx_product_det modify label varchar(255) NOT NULL;
|
||||
alter table llx_product_det modify description text;
|
||||
@ -26,8 +26,8 @@ create table llx_product
|
||||
datec datetime,
|
||||
tms timestamp,
|
||||
ref varchar(16) NOT NULL,
|
||||
label varchar(128),
|
||||
description varchar(255),
|
||||
label varchar(255) NOT NULL,
|
||||
description text,
|
||||
note text,
|
||||
price double,
|
||||
tva_tx double,
|
||||
|
||||
@ -25,7 +25,7 @@ create table llx_product_det
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
fk_product integer DEFAULT 0 NOT NULL,
|
||||
lang varchar(5) DEFAULT 0 NOT NULL,
|
||||
label varchar(128),
|
||||
description varchar(255),
|
||||
label varchar(255) NOT NULL,
|
||||
description text,
|
||||
note text
|
||||
)type=innodb;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user