]> git.mxchange.org Git - friendica.git/commitdiff
allow to update generic subsets of tables
authorfabrixxm <fabrix.xm@gmail.com>
Tue, 31 Mar 2015 08:21:29 +0000 (10:21 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Mon, 6 Apr 2015 19:03:11 +0000 (21:03 +0200)
include/dbstructure.php

index f131abe64f13b489621c85114536ce3b3f6524cd..bd33858dad74fca8838d19781bda034435de0637 100644 (file)
@@ -120,7 +120,7 @@ function print_structure($database) {
        }
 }
 
-function update_structure($verbose, $action) {
+function update_structure($verbose, $action, $tables=null, $definition=null) {
        global $a, $db;
 
        $errors = false;
@@ -130,7 +130,8 @@ function update_structure($verbose, $action) {
        // Get the current structure
        $database = array();
 
-       $tables = q("show tables");
+       if (is_null($tables))
+               $tables = q("show tables");
 
        foreach ($tables AS $table) {
                $table = current($table);
@@ -139,7 +140,8 @@ function update_structure($verbose, $action) {
        }
 
        // Get the definition
-       $definition = db_definition();
+       if (is_null($definition))
+               $definition = db_definition();
 
        // Compare it
        foreach ($definition AS $name => $structure) {