From e9fb809a2dad29af1c195d86d8891312bac3c09f Mon Sep 17 00:00:00 2001 From: friendica <info@friendica.com> Date: Sun, 15 Jan 2012 15:02:48 -0800 Subject: [PATCH] add db_update cmdline script --- util/db_update.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 util/db_update.php diff --git a/util/db_update.php b/util/db_update.php new file mode 100644 index 0000000000..1da2a99091 --- /dev/null +++ b/util/db_update.php @@ -0,0 +1,26 @@ +<?php + +require_once("boot.php"); + +$a = new App; +@include(".htconfig.php"); + +$lang = get_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(); + echo "Done\n"; +} +