convenience function call addExtensionField was lacking the true parameter for the...
authorThomas Gries <wikinaut@users.mediawiki.org>
Wed, 12 Oct 2011 21:39:32 +0000 (21:39 +0000)
committerThomas Gries <wikinaut@users.mediawiki.org>
Wed, 12 Oct 2011 21:39:32 +0000 (21:39 +0000)
includes/installer/DatabaseUpdater.php

index 57b1df1..e7ecb6f 100644 (file)
@@ -186,7 +186,7 @@ abstract class DatabaseUpdater {
         * @param $sqlPath string
         */
        public function addExtensionField( $tableName, $columnName, $sqlPath ) {
-               $this->extensionUpdates[] = array( 'addField', $tableName, $columnName, $sqlPath );
+               $this->extensionUpdates[] = array( 'addField', $tableName, $columnName, $sqlPath, true );
        }
 
        /**