mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
Initial
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user