aboutsummaryrefslogtreecommitdiff
path: root/migrate/migrate.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-04 20:53:00 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-19 22:16:46 +0300
commitdbbc19b77dcf6ea828aabd64d7aa8cab9635aaf5 (patch)
treec0b9b449b7064dff3613628022224e6c18148c3e /migrate/migrate.cli
parentefb9c3e0e6b612d5bfadc7a2b984c14b5439335c (diff)
Implement build task, result and log requests handling
Diffstat (limited to 'migrate/migrate.cli')
-rw-r--r--migrate/migrate.cli10
1 files changed, 6 insertions, 4 deletions
diff --git a/migrate/migrate.cli b/migrate/migrate.cli
index 42a1c2e..54edd70 100644
--- a/migrate/migrate.cli
+++ b/migrate/migrate.cli
@@ -17,13 +17,14 @@ include <cstdint>; // uint16_t
\cb{brep-migrate --help}\n
\cb{brep-migrate --version}\n
- \c{\b{brep-migrate} [<options>]}
+ \c{\b{brep-migrate} [<options>] <schema>}
\h|DESCRIPTION|
In its default mode \cb{brep-migrate} creates the database schema if it
doesn't already exist. Otherwise, it migrates the existing schema and data
- to the current version, if needed.
+ to the current version, if needed. The valid schema names are \cb{package}
+ and \cb{build}.
If the \cb{--recreate} option is specified, then \cb{brep-migrate} instead
recreates the database schema. That is, it drops all the existing tables
@@ -66,10 +67,11 @@ class options
expected to work."
}
- std::string --db-name|-n = "brep"
+ std::string --db-name|-n
{
"<name>",
- "Database name. If not specified, then '\cb{brep}' is used by default."
+ "Database name. If not specified, then it is implicitly derived by
+ prefixing the schema name with \cb{brep_}."
}
std::string --db-host|-h