37 lines
2.2 KiB
SQL
37 lines
2.2 KiB
SQL
CREATE TABLE "calendar_events" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"calendar_id" uuid NOT NULL,
|
|
"title" text NOT NULL,
|
|
"start_at" timestamp with time zone NOT NULL,
|
|
"end_at" timestamp with time zone NOT NULL,
|
|
"all_day" boolean DEFAULT false NOT NULL,
|
|
"location" text,
|
|
"notes" text,
|
|
"owner_id" uuid NOT NULL,
|
|
"rrule" text,
|
|
"external_source" text,
|
|
"external_id" text,
|
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
CONSTRAINT "calendar_events_range_check" CHECK ("calendar_events"."end_at" >= "calendar_events"."start_at")
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE TABLE "calendars" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"household_id" uuid NOT NULL,
|
|
"owner_id" uuid NOT NULL,
|
|
"name" text NOT NULL,
|
|
"color" text,
|
|
"visibility" text DEFAULT 'household' NOT NULL,
|
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
CONSTRAINT "calendars_visibility_check" CHECK ("calendars"."visibility" in ('private', 'household'))
|
|
);
|
|
--> statement-breakpoint
|
|
ALTER TABLE "calendar_events" ADD CONSTRAINT "calendar_events_calendar_id_calendars_id_fk" FOREIGN KEY ("calendar_id") REFERENCES "public"."calendars"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
|
ALTER TABLE "calendar_events" ADD CONSTRAINT "calendar_events_owner_id_users_id_fk" FOREIGN KEY ("owner_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
|
ALTER TABLE "calendars" ADD CONSTRAINT "calendars_household_id_households_id_fk" FOREIGN KEY ("household_id") REFERENCES "public"."households"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
|
ALTER TABLE "calendars" ADD CONSTRAINT "calendars_owner_id_users_id_fk" FOREIGN KEY ("owner_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
|
CREATE INDEX "calendar_events_calendar_start_idx" ON "calendar_events" USING btree ("calendar_id","start_at");--> statement-breakpoint
|
|
CREATE INDEX "calendars_household_idx" ON "calendars" USING btree ("household_id");--> statement-breakpoint
|
|
CREATE INDEX "calendars_owner_idx" ON "calendars" USING btree ("owner_id"); |