forked from Wavyzz/dolibarr
Fix: Missing field
This commit is contained in:
@@ -83,7 +83,9 @@ ALTER TABLE llx_propaldet_extrafields ADD INDEX idx_propaldet_extrafields (fk_ob
|
|||||||
DROP table llx_adherent_options;
|
DROP table llx_adherent_options;
|
||||||
DROP table llx_adherent_options_label;
|
DROP table llx_adherent_options_label;
|
||||||
|
|
||||||
ALTER TABLE llx_user ADD accountancy_code VARCHAR( 24 ) NULL;
|
ALTER TABLE llx_user ADD accountancy_code VARCHAR(24) NULL;
|
||||||
|
ALTER TABLE llx_c_chargesociales ADD accountancy_code varchar(24) DEFAULT NULL;
|
||||||
|
|
||||||
|
|
||||||
DELETE FROM llx_boxes where box_id IN (SELECT rowid FROM llx_boxes_def where file='box_activity.php' AND note IS NULL);
|
DELETE FROM llx_boxes where box_id IN (SELECT rowid FROM llx_boxes_def where file='box_activity.php' AND note IS NULL);
|
||||||
DELETE FROM llx_boxes_def where file='box_activity.php' AND note IS NULL;
|
DELETE FROM llx_boxes_def where file='box_activity.php' AND note IS NULL;
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ create table llx_c_chargesociales
|
|||||||
deductible smallint DEFAULT 0 NOT NULL,
|
deductible smallint DEFAULT 0 NOT NULL,
|
||||||
active tinyint DEFAULT 1 NOT NULL,
|
active tinyint DEFAULT 1 NOT NULL,
|
||||||
code varchar(12) NOT NULL,
|
code varchar(12) NOT NULL,
|
||||||
accountancy_code varchar(15) DEFAULT NULL,
|
accountancy_code varchar(24) DEFAULT NULL,
|
||||||
fk_pays integer DEFAULT 1 NOT NULL,
|
fk_pays integer DEFAULT 1 NOT NULL,
|
||||||
module varchar(32) NULL
|
module varchar(32) NULL
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Reference in New Issue
Block a user