This commit is contained in:
Ember Moth
2026-07-05 20:27:58 +08:00
commit 2744c70c5c
837 changed files with 53059 additions and 0 deletions
@@ -0,0 +1,18 @@
-- migrate:up
CREATE TABLE IF NOT EXISTS "server_config_overrides"
(
"id" BIGINT GENERATED BY DEFAULT AS IDENTITY NOT NULL,
"server_id" bigint NOT NULL,
"ip_strategy" varchar(32) DEFAULT NULL,
"dns" text DEFAULT NULL,
"block" text DEFAULT NULL,
"outbound" text DEFAULT NULL,
"created_at" TIMESTAMP(3) DEFAULT NULL,
"updated_at" TIMESTAMP(3) DEFAULT NULL,
PRIMARY KEY ("id"),
CONSTRAINT "uni_server_config_overrides_server_id" UNIQUE ("server_id")
);
-- migrate:down
DROP TABLE IF EXISTS "server_config_overrides";