Fix: Error with postgresql
This commit is contained in:
parent
eebc5a0a84
commit
811fb69e99
@ -267,7 +267,7 @@ if (1 == 2) { // Disabled during install process because HTTPS may not be yet
|
|||||||
$versionbasemin=array();
|
$versionbasemin=array();
|
||||||
if ($type=='mysql') { $versionbasemin=array(3,1,0); $testfunction='mysql_connect'; }
|
if ($type=='mysql') { $versionbasemin=array(3,1,0); $testfunction='mysql_connect'; }
|
||||||
if ($type=='mysqli') { $versionbasemin=array(4,1,0); $testfunction='mysqli_connect'; }
|
if ($type=='mysqli') { $versionbasemin=array(4,1,0); $testfunction='mysqli_connect'; }
|
||||||
if ($type=='pgsql') { $versionbasemin=array(8,1,0); $testfunction='pg_connect'; }
|
if ($type=='pgsql') { $versionbasemin=array(8,4,0); $testfunction='pg_connect'; }
|
||||||
if ($type=='mssql') { $versionbasemin=array(2000); $testfunction='mssql_connect'; }
|
if ($type=='mssql') { $versionbasemin=array(2000); $testfunction='mssql_connect'; }
|
||||||
|
|
||||||
// Remarques
|
// Remarques
|
||||||
|
|||||||
@ -143,9 +143,9 @@ ALTER TABLE llx_facture_rec ADD COLUMN nb_gen_max integer DEFAULT NULL;
|
|||||||
ALTER TABLE llx_user ADD COLUMN openid varchar(255);
|
ALTER TABLE llx_user ADD COLUMN openid varchar(255);
|
||||||
|
|
||||||
-- Enhance Withdrawal module
|
-- Enhance Withdrawal module
|
||||||
INSERT INTO llx_action_def (code,titre,description,objet_type) values ('NOTIFY_TRN_WITHDRAW','Transmit withdraw','Executed when a withdrawal is transmited','withdraw');
|
INSERT INTO llx_action_def (rowid,code,titre,description,objet_type) values (7,'NOTIFY_TRN_WITHDRAW','Transmit withdraw','Executed when a withdrawal is transmited','withdraw');
|
||||||
INSERT INTO llx_action_def (code,titre,description,objet_type) values ('NOTIFY_CRD_WITHDRAW','Credite withdraw','Executed when a withdrawal is credited','withdraw');
|
INSERT INTO llx_action_def (rowid,code,titre,description,objet_type) values (8,'NOTIFY_CRD_WITHDRAW','Credite withdraw','Executed when a withdrawal is credited','withdraw');
|
||||||
INSERT INTO llx_action_def (code,titre,description,objet_type) values ('NOTIFY_EMT_WITHDRAW','Emit withdraw','Executed when a withdrawal is emited','withdraw');
|
INSERT INTO llx_action_def (rowid,code,titre,description,objet_type) values (9,'NOTIFY_EMT_WITHDRAW','Emit withdraw','Executed when a withdrawal is emited','withdraw');
|
||||||
|
|
||||||
ALTER TABLE llx_prelevement_notifications MODIFY action varchar(32);
|
ALTER TABLE llx_prelevement_notifications MODIFY action varchar(32);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user