Fix add tms field to help debug v19 and sepa payment pbs

This commit is contained in:
Laurent Destailleur 2023-12-14 14:01:28 +01:00
parent d5722ee4b2
commit 1a7f674bd5
2 changed files with 4 additions and 1 deletions

View File

@ -201,3 +201,5 @@ ALTER TABLE llx_commande_fournisseur_dispatch ADD COLUMN element_type varchar(50
ALTER TABLE llx_expensereport DROP INDEX idx_expensereport_fk_refuse, ADD INDEX idx_expensereport_fk_refuse(fk_user_refuse);
INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (1,'66','Société publique locale');
ALTER TABLE llx_prelevement_lignes ADD COLUMN tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;

View File

@ -32,5 +32,6 @@ create table llx_prelevement_lignes
number varchar(255),
cle_rib varchar(5),
note text
note text,
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
)ENGINE=innodb;