Ajout Mollie à la table moyens de paiement
This commit is contained in:
parent
38494a1a85
commit
6e2ee31670
4 changed files with 13 additions and 2 deletions
10
upgrade.php
10
upgrade.php
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue