0
|
1 #!/usr/bin/env php
|
|
2 <?php
|
|
3 /*
|
|
4 +-----------------------------------------------------------------------+
|
|
5 | bin/updatedb.sh |
|
|
6 | |
|
|
7 | This file is part of the Roundcube Webmail client |
|
|
8 | Copyright (C) 2010-2012, The Roundcube Dev Team |
|
|
9 | Copyright (C) 2010-2012, Kolab Systems AG |
|
|
10 | |
|
|
11 | Licensed under the GNU General Public License version 3 or |
|
|
12 | any later version with exceptions for skins & plugins. |
|
|
13 | See the README file for a full license statement. |
|
|
14 | |
|
|
15 | PURPOSE: |
|
|
16 | Update database schema |
|
|
17 +-----------------------------------------------------------------------+
|
|
18 | Author: Aleksander Machniak <alec@alec.pl> |
|
|
19 +-----------------------------------------------------------------------+
|
|
20 */
|
|
21
|
|
22 define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
|
|
23
|
|
24 require_once INSTALL_PATH . 'program/include/clisetup.php';
|
|
25
|
|
26 // get arguments
|
|
27 $opts = rcube_utils::get_opt(array(
|
|
28 'v' => 'version',
|
|
29 'd' => 'dir',
|
|
30 'p' => 'package',
|
|
31 ));
|
|
32
|
|
33 if (empty($opts['dir'])) {
|
|
34 rcube::raise_error("Database schema directory not specified (--dir).", false, true);
|
|
35 }
|
|
36 if (empty($opts['package'])) {
|
|
37 rcube::raise_error("Database schema package name not specified (--package).", false, true);
|
|
38 }
|
|
39
|
8
|
40 rcmail_utils::db_update($opts['dir'], $opts['package'], $opts['version'], array('errors' => true));
|
0
|
41
|
|
42 ?>
|