diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-10-07 14:03:02 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-07 14:03:02 +0200 |
| commit | 64641f9b1f2043884898cd6eef3d358ef4c1c575 (patch) | |
| tree | 61bd728b2b25b393561ab5af6a81f76ae18c822b /phpBB/config/default | |
| parent | f68d5a59e6cc153318a5146d67188753f5a20ef7 (diff) | |
| parent | 60099cf97c13106b741ab779883a89a0dbc4b6fa (diff) | |
| download | forums-64641f9b1f2043884898cd6eef3d358ef4c1c575.tar forums-64641f9b1f2043884898cd6eef3d358ef4c1c575.tar.gz forums-64641f9b1f2043884898cd6eef3d358ef4c1c575.tar.bz2 forums-64641f9b1f2043884898cd6eef3d358ef4c1c575.tar.xz forums-64641f9b1f2043884898cd6eef3d358ef4c1c575.zip | |
Merge pull request #3904 from Zoddo/ticket/14162
[ticket/14162] Add CLI commands to manage migrations
Diffstat (limited to 'phpBB/config/default')
| -rw-r--r-- | phpBB/config/default/container/services_console.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/phpBB/config/default/container/services_console.yml b/phpBB/config/default/container/services_console.yml index aee3cbdee6..72cca8fcb8 100644 --- a/phpBB/config/default/container/services_console.yml +++ b/phpBB/config/default/container/services_console.yml @@ -75,6 +75,17 @@ services: tags: - { name: console.command } + console.command.db.list: + class: phpbb\console\command\db\list_command + arguments: + - @user + - @migrator + - @ext.manager + - @config + - @cache + tags: + - { name: console.command } + console.command.db.migrate: class: phpbb\console\command\db\migrate arguments: @@ -89,6 +100,19 @@ services: tags: - { name: console.command } + console.command.db.revert: + class: phpbb\console\command\db\revert + arguments: + - @user + - @migrator + - @ext.manager + - @config + - @cache + - @filesystem + - %core.root_path% + tags: + - { name: console.command } + console.command.dev.migration_tips: class: phpbb\console\command\dev\migration_tips arguments: |
