summaryrefslogtreecommitdiff
path: root/lib/schema.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/schema.php')
-rw-r--r--lib/schema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/schema.php b/lib/schema.php
index f42226bad..2793906a4 100644
--- a/lib/schema.php
+++ b/lib/schema.php
@@ -555,7 +555,7 @@ class Schema
if ($compareCallback) {
$same = call_user_func($compareCallback, $old[$name], $new[$name]);
} else {
- $same = ($old[$name] != $new[$name]);
+ $same = ($old[$name] == $new[$name]);
}
if ($same) {
$tokeep[] = $name;