Upgrade skeleton files for 2.3 release.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Fri, 4 Dec 2009 23:30:33 +0000 (23:30 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Fri, 4 Dec 2009 23:30:33 +0000 (23:30 +0000)
sql/alter2.3.php [new file with mode: 0644]
sql/alter2.3.sql [new file with mode: 0644]

diff --git a/sql/alter2.3.php b/sql/alter2.3.php
new file mode 100644 (file)
index 0000000..07e84e4
--- /dev/null
@@ -0,0 +1,53 @@
+<?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+
+class fa2_3 {
+       var $version = '2.3';   // version installed
+       var $description;
+       var $sql = 'alter2.3.sql';
+       var $preconf = true;
+       
+       function fa2_3() {
+               $this->description = _('Upgrade from version 2.2 to 2.3');
+       }
+       
+       //
+       //      Install procedure. All additional changes 
+       //      not included in sql file should go here.
+       //
+       function install($pref, $force) 
+       {
+               return true;
+       }
+       //
+       //      Checking before install
+       //
+       function pre_check($pref, $force)
+       {
+               return true;
+       }
+       //
+       //      Test if patch was applied before.
+       //
+       function installed($pref) {
+               $n = 1; // number of patches to be installed
+               $patchcnt = 0;
+
+               if (!check_table($pref, 'comments', 'type', array('Key'=>'MUL'))) $patchcnt++;
+
+               $n -= $patchcnt;
+               return $n == 0 ? true : $patchcnt;
+       }
+};
+
+$install = new fa2_3;
+?>
\ No newline at end of file
diff --git a/sql/alter2.3.sql b/sql/alter2.3.sql
new file mode 100644 (file)
index 0000000..8e9256c
--- /dev/null
@@ -0,0 +1 @@
+ALTER TABLE 0_comments ADD KEY type_and_id (`type`, `id`);
\ No newline at end of file