aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/migrator.php
diff options
context:
space:
mode:
authorZoddo <zoddo.ino@gmail.com>2015-09-13 16:08:22 +0200
committerZoddo <zoddo.ino@gmail.com>2015-09-20 12:26:46 +0200
commit2596fba487a067cba36b5ebe50e1c73e4dc954d3 (patch)
treee682206c3d7b197a7bcf973e8bdbd96565c53dc4 /phpBB/language/en/migrator.php
parent3bde202a1087a06baa6b06a7612001f0478da580 (diff)
downloadforums-2596fba487a067cba36b5ebe50e1c73e4dc954d3.tar
forums-2596fba487a067cba36b5ebe50e1c73e4dc954d3.tar.gz
forums-2596fba487a067cba36b5ebe50e1c73e4dc954d3.tar.bz2
forums-2596fba487a067cba36b5ebe50e1c73e4dc954d3.tar.xz
forums-2596fba487a067cba36b5ebe50e1c73e4dc954d3.zip
[ticket/14162] Add CLI command db:revert
This command allow to revert a migration from the CLI PHPBB3-14162
Diffstat (limited to 'phpBB/language/en/migrator.php')
-rw-r--r--phpBB/language/en/migrator.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/language/en/migrator.php b/phpBB/language/en/migrator.php
index 244a5faadf..fcf1c4063b 100644
--- a/phpBB/language/en/migrator.php
+++ b/phpBB/language/en/migrator.php
@@ -48,10 +48,17 @@ $lang = array_merge($lang, array(
'MIGRATION_EFFECTIVELY_INSTALLED' => 'Migration already effectively installed (skipped): %s',
'MIGRATION_EXCEPTION_ERROR' => 'Something went wrong during the request and an exception was thrown. The changes made before the error occurred were reversed to the best of our abilities, but you should check the board for errors.',
'MIGRATION_NOT_FULFILLABLE' => 'The migration "%1$s" is not fulfillable, missing migration "%2$s".',
+ 'MIGRATION_NOT_INSTALLED' => 'The migration "%s" is not installed.',
'MIGRATION_NOT_VALID' => '%s is not a valid migration.',
'MIGRATION_SCHEMA_DONE' => 'Installed Schema: %1$s; Time: %2$.2f seconds',
'MIGRATION_SCHEMA_RUNNING' => 'Installing Schema: %s.',
+ 'MIGRATION_REVERT_DATA_DONE' => 'Reverted Data: %1$s; Time: %2$.2f seconds',
+ 'MIGRATION_REVERT_DATA_IN_PROGRESS' => 'Reverting Data: %1$s; Time: %2$.2f seconds',
+ 'MIGRATION_REVERT_DATA_RUNNING' => 'Reverting Data: %s.',
+ 'MIGRATION_REVERT_SCHEMA_DONE' => 'Reverted Schema: %1$s; Time: %2$.2f seconds',
+ 'MIGRATION_REVERT_SCHEMA_RUNNING' => 'Reverting Schema: %s.',
+
'MIGRATION_INVALID_DATA_MISSING_CONDITION' => 'A migration is invalid. An if statement helper is missing a condition.',
'MIGRATION_INVALID_DATA_MISSING_STEP' => 'A migration is invalid. An if statement helper is missing a valid call to a migration step.',
'MIGRATION_INVALID_DATA_CUSTOM_NOT_CALLABLE' => 'A migration is invalid. A custom callable function could not be called.',