Global change in naming convention from std_cost to unit_cost.
[fa-stable.git] / sql / alter2.5.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
13 class fa2_5 extends fa_patch {
14         var $previous = '2.4.1';                // applicable database version
15         var $version = '2.5.0'; // version installed
16         var $description;
17         var $sql = 'alter2.5.sql';
18         var     $max_upgrade_time = 900;
19         
20         function __construct() {
21                 parent::__construct();
22                 $this->description = _('Upgrade from version 2.4 to 2.5');
23         }
24
25         //
26         //      Install procedure. All additional changes 
27         //      not included in sql file should go here.
28         //
29         function install($company, $force=false)
30         {
31                 return true;
32         }
33
34         //
35         // optional procedure done after upgrade fail, before backup is restored
36         //
37         function post_fail($company)
38         {
39         }
40
41 }
42
43 $install = new fa2_5;