Skip to content

Commit

Permalink
Issue #280-Remove bootstrap level from db commands (#281)
Browse files Browse the repository at this point in the history
The tests have all passed, the scope is very limited and is a simple change.
  • Loading branch information
yorkshire-pudding authored May 2, 2023
1 parent 0e1e868 commit 24886ce
Showing 1 changed file with 0 additions and 3 deletions.
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

0 comments on commit 24886ce

Please sign in to comment.