1CREATE TABLE IF NOT EXISTS "sessions" (
2 "id" text PRIMARY KEY NOT NULL,
3 "did" text NOT NULL,
4 "created_at" timestamp with time zone NOT NULL,
5 "expires_at" timestamp with time zone NOT NULL
6);
7--> statement-breakpoint
8ALTER TABLE "connections" ADD COLUMN IF NOT EXISTS "rkey" text;