better-chatbot / src /lib /db /migrations /pg /0004_oval_silverclaw.sql
Bot
Initial commit for HF Spaces
05c5ed5
Raw
History Blame Contribute Delete
313 Bytes
CREATE TABLE IF NOT EXISTS "mcp_server" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"name" text NOT NULL,
"config" json NOT NULL,
"enabled" boolean DEFAULT true NOT NULL,
"created_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updated_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL
);