From e4c933ef287757f977eea7881098af6b85279844 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Thu, 14 Jan 2010 23:41:12 +0000 Subject: [PATCH] Merged revisions 2868-2871 via svnmerge from svn+ssh://danydb@svn/svn/phpcompta/branches/rel500 ........ r2869 | danydb | 2010-01-14 14:41:25 +0100 (Thu, 14 Jan 2010) | 1 line Bug : fiche_attribut_synchro is really low, solution is to create 2 indexes ........ --- html/admin/sql/patch/upgrade62.sql | 9 +++++++++ include/constant.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 html/admin/sql/patch/upgrade62.sql diff --git a/html/admin/sql/patch/upgrade62.sql b/html/admin/sql/patch/upgrade62.sql new file mode 100644 index 000000000..4b29b7a94 --- /dev/null +++ b/html/admin/sql/patch/upgrade62.sql @@ -0,0 +1,9 @@ +begin; +-- View: vw_fiche_def + +create index jnt_fic_att_value_fd_id_idx on jnt_fic_att_value(f_id); +create index jnt_fic_attr_fd_id_idx on jnt_fic_attr(fd_id); + +update version set val=63; + +commit; diff --git a/include/constant.php b/include/constant.php index ffe5bca70..2efffdbd2 100644 --- a/include/constant.php +++ b/include/constant.php @@ -26,7 +26,7 @@ require_once ('config.inc.php'); require_once('constant.security.php'); -define ("DBVERSION",62); +define ("DBVERSION",63); define ("MAX_COMPTE",4); define ('MAX_ARTICLE',9);