aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-09-18 10:42:21 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-09-18 10:45:08 +0200
commitc220fa89a1bf5652df6512ad78eb9ba550fe465e (patch)
tree78f38853c04b3cb15d074a06886d448968615b39 /phpBB/phpbb/console
parent53e028ff1485bac571982a56200412fadb72dc83 (diff)
downloadforums-c220fa89a1bf5652df6512ad78eb9ba550fe465e.tar
forums-c220fa89a1bf5652df6512ad78eb9ba550fe465e.tar.gz
forums-c220fa89a1bf5652df6512ad78eb9ba550fe465e.tar.bz2
forums-c220fa89a1bf5652df6512ad78eb9ba550fe465e.tar.xz
forums-c220fa89a1bf5652df6512ad78eb9ba550fe465e.zip
[ticket/12963] Revert back to "migrations" folder name for extensions
The issues that can be created with the name change are just too much PHPBB3-12963
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/command/db/migrate.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php
index 68638a9515..86545c237d 100644
--- a/phpBB/phpbb/console/command/db/migrate.php
+++ b/phpBB/phpbb/console/command/db/migrate.php
@@ -117,17 +117,9 @@ class migrate extends \phpbb\console\command\command
$migrations = $this->extension_manager
->get_finder()
->core_path('phpbb/db/migration/data/')
- ->extension_directory('/migration')
- ->get_classes();
-
- // @deprecated 3.1.0-RC4 (To be removed: 3.2.0)
- $migrations_deprecated = $this->extension_manager
- ->get_finder()
->extension_directory('/migrations')
->get_classes();
- $migrations = array_merge($migrations, $migrations_deprecated);
-
$this->migrator->set_migrations($migrations);
}