aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/db
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-07-28 18:13:44 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-07-28 18:13:44 +0200
commit7d4b019266c20da2e9677829b0dd0a7f7d740833 (patch)
treeea4fb80013ae3f16658f5d28822dead1ddb3de6e /phpBB/phpbb/console/command/db
parent1095086cde8f76932119f4bfe853bcfbc724317e (diff)
parente992eab4c3f39d22acacac70c95c62b942ca36ff (diff)
downloadforums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar
forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.gz
forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.bz2
forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.xz
forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12870] Add doc block [ticket/12870] Create the migrations table with a method in the migrator [ticket/12870] Add $config['version'] in phpbb_extension_manager_test [ticket/12870] Create the migrations table in db:migrate
Diffstat (limited to 'phpBB/phpbb/console/command/db')
-rw-r--r--phpBB/phpbb/console/command/db/migrate.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php
index bb5f83b16f..c3caae5f70 100644
--- a/phpBB/phpbb/console/command/db/migrate.php
+++ b/phpBB/phpbb/console/command/db/migrate.php
@@ -53,6 +53,8 @@ class migrate extends \phpbb\console\command\command
protected function execute(InputInterface $input, OutputInterface $output)
{
+ $this->migrator->create_migrations_table();
+
$this->load_migrations();
$orig_version = $this->config['version'];
while (!$this->migrator->finished())