aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/cli.php
diff options
context:
space:
mode:
authorZoddo <zoddo.ino@gmail.com>2015-09-13 17:15:35 +0200
committerZoddo <zoddo.ino@gmail.com>2015-09-20 12:29:33 +0200
commit60099cf97c13106b741ab779883a89a0dbc4b6fa (patch)
treef90ede2335fb9a79213d747687862fb1c0092f17 /phpBB/language/en/cli.php
parent2596fba487a067cba36b5ebe50e1c73e4dc954d3 (diff)
downloadforums-60099cf97c13106b741ab779883a89a0dbc4b6fa.tar
forums-60099cf97c13106b741ab779883a89a0dbc4b6fa.tar.gz
forums-60099cf97c13106b741ab779883a89a0dbc4b6fa.tar.bz2
forums-60099cf97c13106b741ab779883a89a0dbc4b6fa.tar.xz
forums-60099cf97c13106b741ab779883a89a0dbc4b6fa.zip
[ticket/14162] Add CLI command db:list
This command lists all installed and uninstalled migrations. Note: The class is named `list_command`, because `list` is a reserved word and can't be used as class name in PHP. PHPBB3-14162
Diffstat (limited to 'phpBB/language/en/cli.php')
-rw-r--r--phpBB/language/en/cli.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
index 30e7eb4fa8..1c549e5f9f 100644
--- a/phpBB/language/en/cli.php
+++ b/phpBB/language/en/cli.php
@@ -50,6 +50,7 @@ $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',
@@ -96,6 +97,10 @@ $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...',