Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #280-Remove bootstrap level from db commands #281

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions commands/db.bee.inc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ function db_bee_command() {
),
),
'aliases' => array('dbex', 'db-dump', 'sql-export', 'sql-dump'),
'bootstrap' => BEE_BOOTSTRAP_DATABASE,
'examples' => array(
'bee db-export db.sql' => bt('Export the database to db.sql.gz.'),
'bee db-export' => bt('Export the database to [DATE_TIME].sql.gz.'),
Expand All @@ -40,7 +39,6 @@ function db_bee_command() {
'file' => bt('The SQL file to import into the database. Can be gzipped (i.e. *.sql.gz).'),
),
'aliases' => array('dbim', 'sql-import'),
'bootstrap' => BEE_BOOTSTRAP_DATABASE,
'examples' => array(
'bee db-import backup.sql' => bt('Import backup.sql into the current database.'),
'bee db-import db.sql.gz' => bt('Extract and import db.sql into the current database.'),
Expand All @@ -51,7 +49,6 @@ function db_bee_command() {
'callback' => 'sql_bee_callback',
'group' => 'advanced',
'aliases' => array('sqlc', 'sql-cli', 'db-cli'),
'bootstrap' => BEE_BOOTSTRAP_DATABASE,
'examples' => array(
'bee sql' => bt('Open a command-line for the current database.'),
'bee sql < backup.sql' => bt('Import an SQL file into the current database.'),
Expand Down