aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/cli.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-10-07 14:03:02 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-07 14:03:02 +0200
commit64641f9b1f2043884898cd6eef3d358ef4c1c575 (patch)
tree61bd728b2b25b393561ab5af6a81f76ae18c822b /phpBB/language/en/cli.php
parentf68d5a59e6cc153318a5146d67188753f5a20ef7 (diff)
parent60099cf97c13106b741ab779883a89a0dbc4b6fa (diff)
downloadforums-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/language/en/cli.php')
-rw-r--r--phpBB/language/en/cli.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
index 9aa8b7fcc2..1c549e5f9f 100644
--- a/phpBB/language/en/cli.php
+++ b/phpBB/language/en/cli.php
@@ -50,7 +50,9 @@ $lang = array_merge($lang, array(
'CLI_DESCRIPTION_CRON_LIST' => 'Prints a list of ready and unready cron jobs.',
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'Name of the task to be run',
+ 'CLI_DESCRIPTION_DB_LIST' => 'List all installed and available migrations.',
'CLI_DESCRIPTION_DB_MIGRATE' => 'Updates the database by applying migrations.',
+ 'CLI_DESCRIPTION_DB_REVERT' => 'Revert a migration.',
'CLI_DESCRIPTION_DELETE_CONFIG' => 'Deletes a configuration option',
'CLI_DESCRIPTION_DISABLE_EXTENSION' => 'Disables the specified extension.',
'CLI_DESCRIPTION_ENABLE_EXTENSION' => 'Enables the specified extension.',
@@ -94,6 +96,12 @@ $lang = array_merge($lang, array(
'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS' => 'Successfully recalculated all email hashes.',
+ 'CLI_MIGRATION_NAME' => 'Migration name, including the namespace (use forward slashes instead of backslashes to avoid problems).',
+ 'CLI_MIGRATIONS_AVAILABLE' => 'Available migrations',
+ 'CLI_MIGRATIONS_INSTALLED' => 'Installed migrations',
+ 'CLI_MIGRATIONS_ONLY_AVAILABLE' => 'Show only available migrations',
+ 'CLI_MIGRATIONS_EMPTY' => 'No migrations.',
+
'CLI_REPARSER_REPARSE_REPARSING' => 'Reparsing %1$s (range %2$d..%3$d)',
'CLI_REPARSER_REPARSE_REPARSING_START' => 'Reparsing %s...',
'CLI_REPARSER_REPARSE_SUCCESS' => 'Reparsing ended with success',