Merge branch 'develop' into PRODUCT_PRICE_BASE_TYPE

This commit is contained in:
Laurent Destailleur
2020-06-12 01:00:15 +02:00
committed by GitHub
22 changed files with 137 additions and 56 deletions

View File

@@ -46,4 +46,7 @@ UPDATE llx_establishment SET ref = rowid WHERE ref IS NULL;
ALTER TABLE llx_establishment MODIFY COLUMN ref varchar(30) NOT NULL;
ALTER TABLE llx_establishment MODIFY COLUMN name varchar(128);
INSERT INTO llx_const (rowid, name, entity, value, type, visible, note, tms) VALUES (NULL, 'PRODUCT_PRICE_BASE_TYPE', '1', 'HT', 'string', '0', NULL, CURRENT_TIMESTAMP);
INSERT INTO llx_const (name, entity, value, type, visible, note) VALUES ('PRODUCT_PRICE_BASE_TYPE', '0', 'HT', 'string', '0', NULL);
ALTER TABLE llx_subscription MODIFY COLUMN datef DATETIME;

View File

@@ -24,7 +24,7 @@ create table llx_subscription
fk_adherent integer,
fk_type integer,
dateadh datetime,
datef date,
datef datetime,
subscription double(24,8),
fk_bank integer DEFAULT NULL,
fk_user_creat integer DEFAULT NULL,