Move stor commands to category Database (#11315)

Fixes #11309
This commit is contained in:
Hofer-Julian
2023-12-13 16:24:16 +01:00
committed by GitHub
parent d43f4253e8
commit 76482cc1b2
12 changed files with 13 additions and 11 deletions

View File

@ -24,7 +24,7 @@ impl Command for QueryDb {
SyntaxShape::String,
"SQL to execute against the database",
)
.category(Category::Custom("database".into()))
.category(Category::Database)
}
fn usage(&self) -> &str {

View File

@ -17,7 +17,7 @@ impl Command for SchemaDb {
fn signature(&self) -> Signature {
Signature::build(self.name())
.input_output_types(vec![(Type::Any, Type::Any)])
.category(Category::Custom("database".into()))
.category(Category::Database)
}
fn usage(&self) -> &str {