mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
15 lines
583 B
SQL
15 lines
583 B
SQL
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")
|
|
);
|
|
|