1: <?php
2: /**
3: * @package awl
4: * @subpackage AwlDatabase
5: * @author Andrew McMillan <andrew@morphoss.com>
6: * @copyright Morphoss Ltd
7: * @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU LGPL version 3 or later
8: * @compatibility Requires PHP 5.1 or later
9: */
10:
11: require_once('AwlQuery.php');
12:
13: /**
14: * Database upgrader class and associated functions
15: *
16: * This subpackage provides some functions that are useful around database
17: * schema creation and changes.
18: *
19: */
20:
21: /**
22: * The AwlUpgrader Class.
23: *
24: * This class updates an Awl database to a newer schema version.
25: *
26: *
27: * @package awl
28: */
29: class AwlUpgrader
30: {
31: /**
32: * Constructor
33: * @return The AwlUpgrader object
34: */
35: function __construct() {
36: return $this;
37: }
38: }
39:
40: