aboutsummaryrefslogtreecommitdiffstats
path: root/util/db_update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-15 15:02:48 -0800
committerfriendica <info@friendica.com>2012-01-15 15:02:48 -0800
commite9fb809a2dad29af1c195d86d8891312bac3c09f (patch)
tree33d281b6a1bbf3fb529f525caf80672cba82d904 /util/db_update.php
parente1e6d2fa3e23a97dfd7b5b0c3468764ed529ea90 (diff)
downloadvolse-hubzilla-e9fb809a2dad29af1c195d86d8891312bac3c09f.tar.gz
volse-hubzilla-e9fb809a2dad29af1c195d86d8891312bac3c09f.tar.bz2
volse-hubzilla-e9fb809a2dad29af1c195d86d8891312bac3c09f.zip
add db_update cmdline script
Diffstat (limited to 'util/db_update.php')
-rw-r--r--util/db_update.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/util/db_update.php b/util/db_update.php
new file mode 100644
index 000000000..1da2a9909
--- /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";
+}
+