Ajout Mollie à la table moyens de paiement

This commit is contained in:
Jean-Christophe Engel 2025-01-04 14:58:48 +01:00
parent 38494a1a85
commit 6e2ee31670
4 changed files with 13 additions and 2 deletions

View file

@ -211,7 +211,6 @@ if (version_compare($old_version, '0.8.1', '<'))
}
// 0.8.5 Ajout champs SIREN/SIRET à la table clients
if (version_compare($old_version, '0.8.5', '<'))
{
$db->exec(<<<EOT
@ -243,3 +242,12 @@ if (version_compare($old_version, '0.8.5', '<'))
);
}
// 0.12 Ajout Mollie à la table moyens de paiement
if (version_compare($old_version, '0.12', '<'))
{
$db->exec(<<<EOT
INSERT OR IGNORE INTO plugin_facturation_paiement
(code, nom) VALUES ('MO', 'Mollie');
EOT
);
}