From 24886cea80fa5c4c7063d134857809944d0df50b Mon Sep 17 00:00:00 2001 From: Martin Price Date: Tue, 2 May 2023 16:34:06 +0100 Subject: [PATCH] Issue #280-Remove bootstrap level from db commands (#281) The tests have all passed, the scope is very limited and is a simple change. --- commands/db.bee.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/commands/db.bee.inc b/commands/db.bee.inc index 208dd4a5..aff678ba 100644 --- a/commands/db.bee.inc +++ b/commands/db.bee.inc @@ -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.'), @@ -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.'), @@ -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.'),