Fix length of title
This commit is contained in:
parent
e4ef6334aa
commit
02b9ce5901
@ -64,6 +64,8 @@ create table llx_facturedet_rec_extrafields
|
|||||||
|
|
||||||
ALTER TABLE llx_facturedet_rec_extrafields ADD INDEX idx_facturedet_rec_extrafields (fk_object);
|
ALTER TABLE llx_facturedet_rec_extrafields ADD INDEX idx_facturedet_rec_extrafields (fk_object);
|
||||||
|
|
||||||
|
ALTER TABLE llx_facture_rec MODIFY COLUMN titre varchar(200) NOT NULL;
|
||||||
|
|
||||||
-- This var is per entity now, so we remove const if global if exists
|
-- This var is per entity now, so we remove const if global if exists
|
||||||
delete from llx_const where name = 'PROJECT_HIDE_TASKS' and entity = 0;
|
delete from llx_const where name = 'PROJECT_HIDE_TASKS' and entity = 0;
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
create table llx_facture_rec
|
create table llx_facture_rec
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
titre varchar(100) NOT NULL,
|
titre varchar(200) NOT NULL,
|
||||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||||
fk_soc integer NOT NULL,
|
fk_soc integer NOT NULL,
|
||||||
datec datetime, -- date de creation
|
datec datetime, -- date de creation
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user