Files
Synapsis/drizzle/0002_add_bot_id_to_posts.sql
T
2026-01-26 08:34:48 +01:00

6 lines
222 B
SQL

-- Add bot_id column to posts table
ALTER TABLE "posts" ADD COLUMN "bot_id" uuid REFERENCES "bots"("id") ON DELETE SET NULL;
-- Create index for bot_id
CREATE INDEX IF NOT EXISTS "posts_bot_id_idx" ON "posts" ("bot_id");