From c1d80fdf7f920d38e9bb6c493ecba8a4bea1b587 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Thu, 9 Jan 2014 20:36:36 +0000 Subject: [PATCH] Merged revisions 5666 via svnmerge from svn+ssh://danydb@ns352270.ovh.net/svn/phpcompta/tags/rel671 ........ r5666 | danydb | 2014-01-09 21:09:18 +0100 (jeu., 09 janv. 2014) | 1 line oa_signed : bad col named ........ --- html/admin/sql/patch/upgrade113.sql | 7 +++++++ include/constant.php | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 html/admin/sql/patch/upgrade113.sql diff --git a/html/admin/sql/patch/upgrade113.sql b/html/admin/sql/patch/upgrade113.sql new file mode 100644 index 000000000..39e445f0d --- /dev/null +++ b/html/admin/sql/patch/upgrade113.sql @@ -0,0 +1,7 @@ +begin; + +alter table operation_analytique rename oa_signed to oa_positive; + +update version set val=114; + +commit; diff --git a/include/constant.php b/include/constant.php index ce08c5134..c3a1bce58 100644 --- a/include/constant.php +++ b/include/constant.php @@ -61,8 +61,8 @@ $g_failed=""; $g_succeed=""; /* uncomment for development */ //define ('SVNINFO',5995); +//define ("DEBUG",true); define ("DEBUG",false); -//define ("DEBUG",false); $version_phpcompta=SVNINFO; // If you don't want to be notified of the update @@ -71,7 +71,7 @@ define ("SITE_UPDATE",'http://www.phpcompta.eu/last_version.txt'); define ("SITE_UPDATE_PLUGIN",'http://www.phpcompta.eu/plugin_last_version.txt'); -define ("DBVERSION",113); +define ("DBVERSION",114); define ("MONO_DATABASE",25); define ("DBVERSIONREPO",14); define ('NOTFOUND','--not found--');