1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

add oracle support

This commit is contained in:
Robin Appelman 2023-05-04 16:43:57 +02:00
commit a1c8e3c338
9 changed files with 92 additions and 14 deletions

View file

@ -310,6 +310,9 @@ async fn main() -> Result<()> {
DatabaseFamily::Sqlite => {
return Err(Report::msg("sqlite is not supported with `haze env`"))
}
DatabaseFamily::Oracle => {
return Err(Report::msg("oracle is not supported with `haze env`"))
}
DatabaseFamily::Mysql | DatabaseFamily::MariaDB => "mysql",
DatabaseFamily::Postgres => "postgresql",
};