fixing conflicts

This commit is contained in:
Adil El Farissi
2024-07-06 20:31:46 +00:00
parent cca75c799e
commit 19ec375912
3 changed files with 93 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
:VERSION 1
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS MuteList (
"AgentID" varchar(36) NOT NULL,
"MuteId" varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
"MuteName" varchar(64) NOT NULL DEFAULT '',
"MuteType" int4 NOT NULL DEFAULT 1,
"MuteFlags" int4 NOT NULL DEFAULT 0,
"Stamp" int4 NOT NULL,
CONSTRAINT pk_agent_id PRIMARY KEY ("AgentID"),
CONSTRAINT unique_agent_2 UNIQUE ("AgentID", "MuteId", "MuteName")
);
COMMIT;