From 9fe3e7b6c0c37072ad75059ab894ed754e28ee9c Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 9 Oct 2018 17:09:33 +0200 Subject: [PATCH] Fix phpunit --- htdocs/install/mysql/tables/llx_paiement.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/install/mysql/tables/llx_paiement.sql b/htdocs/install/mysql/tables/llx_paiement.sql index eb372366fc9..6eb6b28f695 100644 --- a/htdocs/install/mysql/tables/llx_paiement.sql +++ b/htdocs/install/mysql/tables/llx_paiement.sql @@ -31,11 +31,11 @@ create table llx_paiement fk_paiement integer NOT NULL, num_paiement varchar(50), note text, - ext_payment_id varchar(128), -- external id of payment (for example Stripe charge id) - ext_payment_site varchar(128), -- name of external paymentmode (for example "stripe") + ext_payment_id varchar(128), -- external id of payment (for example Stripe charge id) + ext_payment_site varchar(128), -- name of external paymentmode (for example 'stripe') fk_bank integer NOT NULL DEFAULT 0, fk_user_creat integer, -- utilisateur qui a cree l'info fk_user_modif integer, -- utilisateur qui a modifie l'info - statut smallint DEFAULT 0 NOT NULL, -- Satut, 0 ou 1, 1 n'est plus supprimable + statut smallint DEFAULT 0 NOT NULL, -- Satut, 0 ou 1, 1 n'est plus supprimable fk_export_compta integer DEFAULT 0 NOT NULL -- fk_export_compta 0 pas exporte )ENGINE=innodb;