7a9ca410205c82f3c2008260db660fcfb33c3969
[fa-stable.git] / sql / alter2.2.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 class fa2_2 {
13         var $version = '2.2';   // version installed
14         var $description = 'Version 2.2';
15         var $sql = 'alter2.2.sql';
16         //
17         //      Install procedure. All additional changes 
18         //      not included in sql file should go here.
19         //
20         function install($pref, $force) 
21         {
22                 global $db;
23                                 
24                 return true;
25         }
26         //
27         //      Checking before install
28         //
29         function pre_check($pref)
30         {
31                 return true; // true when ok, fail otherwise
32         }
33         //
34         //      Test if patch was applied before.
35         //
36         function installed($pref) {
37                 if (check_table($pref, 'company', 'default_delivery_required')) return false;
38                 return true;
39         }
40 };
41
42 $install = new fa2_2;
43 ?>