diff options
author | Nils Adermann <naderman@naderman.de> | 2014-05-02 19:55:19 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-05-02 19:55:19 +0200 |
commit | 3420f8f3201ac337434f73ee00bda6df7b378212 (patch) | |
tree | ef9675d1dc9d1e834e6e71213399f3f1f66779b8 /phpBB/phpbb | |
parent | ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92 (diff) | |
download | forums-3420f8f3201ac337434f73ee00bda6df7b378212.tar forums-3420f8f3201ac337434f73ee00bda6df7b378212.tar.gz forums-3420f8f3201ac337434f73ee00bda6df7b378212.tar.bz2 forums-3420f8f3201ac337434f73ee00bda6df7b378212.tar.xz forums-3420f8f3201ac337434f73ee00bda6df7b378212.zip |
[ticket/12475] Load extension migrations on cli updater too
PHPBB3-12475
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/console/command/db/migrate.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php index c7ccd4646e..08016ea4d8 100644 --- a/phpBB/phpbb/console/command/db/migrate.php +++ b/phpBB/phpbb/console/command/db/migrate.php @@ -114,7 +114,8 @@ class migrate extends \phpbb\console\command\command { $migrations = $this->extension_manager ->get_finder() - ->core_path('phpbb/db/migration/data/') + ->core_path('phpbb/db/migration/data/') + ->extension_directory('/migrations') ->get_classes(); $this->migrator->set_migrations($migrations); } |