mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-09-26 10:54:49 +02:00
Merge branch '151-bare-minimum-notification-system' of github.com:open-reception/appointment-booking-software into 151-bare-minimum-notification-system
This commit is contained in:
@@ -8,7 +8,8 @@ CREATE TABLE "notification" (
|
||||
"staff_id" uuid NOT NULL,
|
||||
"title" json NOT NULL,
|
||||
"description" json NOT NULL,
|
||||
"is_read" boolean DEFAULT false NOT NULL
|
||||
"is_read" boolean DEFAULT false NOT NULL,
|
||||
"created_at" timestamp with time zone DEFAULT now() NOT NULL
|
||||
);
|
||||
--> statement-breakpoint
|
||||
ALTER TABLE "channel_staff" ADD CONSTRAINT "channel_staff_channel_id_channel_id_fk" FOREIGN KEY ("channel_id") REFERENCES "public"."channel"("id") ON DELETE no action ON UPDATE no action;
|
||||
Reference in New Issue
Block a user