feat: add firebird (#242)

This commit is contained in:
Charles GTE
2026-03-31 15:08:31 +02:00
committed by GitHub
parent 83ddc934ba
commit 8ffb672e26
5 changed files with 2557 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

@@ -0,0 +1 @@
ALTER TYPE "public"."dbms_status" ADD VALUE 'firebird';
File diff suppressed because it is too large Load Diff
+7
View File
@@ -337,6 +337,13 @@
"when": 1774768062658,
"tag": "0047_wet_carnage",
"breakpoints": true
},
{
"idx": 48,
"version": "7",
"when": 1774886139855,
"tag": "0048_yellow_eddie_brock",
"breakpoints": true
}
]
}
+1 -1
View File
@@ -2,7 +2,7 @@ import {pgEnum} from "drizzle-orm/pg-core";
import {createSelectSchema} from "drizzle-zod";
import {z} from "zod";
export const dbmsEnum = pgEnum("dbms_status", ["postgresql", "mysql", "mariadb", "mongodb", "sqlite", "redis", "valkey"]);
export const dbmsEnum = pgEnum("dbms_status", ["postgresql", "mysql", "mariadb", "mongodb", "sqlite", "redis", "valkey", "firebird"]);
export const statusEnum = pgEnum("status", ["waiting", "ongoing", "failed", "success"]);
export const typeStorageEnum = pgEnum("type_storage", ["local", "s3"]);