aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/db
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2016-02-02 13:12:25 +0100
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-02-02 13:12:25 +0100
commit8e100f000ed5f67f329e597851d81652b4055a53 (patch)
treed49b061d43a0549904d75027a85a9e85faaa394d /phpBB/phpbb/console/command/db
parent15e9367b5b9add3197ea13658499d60de14baa54 (diff)
parent27027deb9ce2076f64dbfdecba494efe1aa523dc (diff)
downloadforums-8e100f000ed5f67f329e597851d81652b4055a53.tar
forums-8e100f000ed5f67f329e597851d81652b4055a53.tar.gz
forums-8e100f000ed5f67f329e597851d81652b4055a53.tar.bz2
forums-8e100f000ed5f67f329e597851d81652b4055a53.tar.xz
forums-8e100f000ed5f67f329e597851d81652b4055a53.zip
Merge pull request #4144 from VSEphpbb/ticket/14434
[ticket/14434] Allow non-migration files inside migrations folder (continued) * VSEphpbb/ticket/14434: [ticket/14434] Refactored to check migrations when setting them [ticket/14434] Check migrations in the database updater task [ticket/14434] Do not include non-migrations in CLI list [ticket/14434] Remove redundant conditional [ticket/14434] Fix whitespace mistakes [ticket/14434] Remove recursion to simplify is_migration method [ticket/14434] Extract migration check to a reusable method [ticket/14434] Schema generator should ignore migration helpers
Diffstat (limited to 'phpBB/phpbb/console/command/db')
-rw-r--r--phpBB/phpbb/console/command/db/migration_command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/db/migration_command.php b/phpBB/phpbb/console/command/db/migration_command.php
index d44ef8c5cb..b951560588 100644
--- a/phpBB/phpbb/console/command/db/migration_command.php
+++ b/phpBB/phpbb/console/command/db/migration_command.php
@@ -45,7 +45,7 @@ abstract class migration_command extends \phpbb\console\command\command
$this->migrator->set_migrations($migrations);
- return $migrations;
+ return $this->migrator->get_migrations();
}
protected function finalise_update()