mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Fix add tms field to help debug v19 and sepa payment pbs
This commit is contained in:
parent
d5722ee4b2
commit
1a7f674bd5
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user