fix: postgres-cluster (#339)

* fix: postgres cluster

* fix: migration

* fix: migration
This commit is contained in:
Charles GTE
2026-06-27 17:14:39 +02:00
committed by GitHub
parent 40247efddd
commit f89b8d3ac3
5 changed files with 2987 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

@@ -0,0 +1 @@
ALTER TYPE "public"."dbms_status" ADD VALUE 'postgresql-cluster' BEFORE 'mysql';
File diff suppressed because it is too large Load Diff
+7
View File
@@ -470,6 +470,13 @@
"when": 1782474105293,
"tag": "0066_milky_puma",
"breakpoints": true
},
{
"idx": 67,
"version": "7",
"when": 1782573099089,
"tag": "0067_clammy_stephen_strange",
"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", "firebird", "mssql"]);
export const dbmsEnum = pgEnum("dbms_status", ["postgresql", "postgresql-cluster", "mysql", "mariadb", "mongodb", "sqlite", "redis", "valkey", "firebird", "mssql"]);
export const statusEnum = pgEnum("status", ["waiting", "ongoing", "failed", "success"]);
export const typeStorageEnum = pgEnum("type_storage", ["local", "s3"]);