internal/dis/component/sql: Fix backup for mariadb

This commit is contained in:
Tom 2023-06-27 14:26:23 +02:00
parent 865959f530
commit b084e3673b
3 changed files with 10 additions and 2 deletions

View file

@ -58,3 +58,11 @@ func (sql *SQL) Stack() component.StackWithResources {
},
})
}
const (
// "mysql"-compatible executable for raw sql queries
SQLQueryExecutable = "mariadb"
// "mysqldump"-compatible executable for dumping an entire database
SQlDumpExecutable = "mariadb-dump"
)