diff options
Diffstat (limited to 'util/db_update.php')
-rw-r--r-- | util/db_update.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/util/db_update.php b/util/db_update.php new file mode 100644 index 000000000..978594ab9 --- /dev/null +++ b/util/db_update.php @@ -0,0 +1,32 @@ +<?php +/** +* @package util +*/ + +/* +* require boot.php +*/ +require_once("boot.php"); + +$a = new App; +@include(".htconfig.php"); + +$lang = get_browser_language(); +load_translation_table($lang); + +require_once("dba.php"); +$db = new dba($db_host, $db_user, $db_pass, $db_data, false); + unset($db_host, $db_user, $db_pass, $db_data); + +$build = get_config('system','build'); + +echo "Old DB VERSION: " . $build . "\n"; +echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n"; + + +if($build != DB_UPDATE_VERSION) { + echo "Updating database..."; + check_config($a); + echo "Done\n"; +} + |