mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-08-17 21:25:52 +02:00
5 lines
459 B
SQL
5 lines
459 B
SQL
CREATE TYPE "public"."notification_type" AS ENUM('APPOINTMENT_CONFIRMED', 'APPOINTMENT_CANCELED');--> statement-breakpoint
|
|
ALTER TABLE "notification" ADD COLUMN "type" "notification_type" DEFAULT 'APPOINTMENT_CONFIRMED' NOT NULL;--> statement-breakpoint
|
|
ALTER TABLE "notification" ADD COLUMN "meta_data" json;--> statement-breakpoint
|
|
ALTER TABLE "notification" DROP COLUMN "title";--> statement-breakpoint
|
|
ALTER TABLE "notification" DROP COLUMN "description"; |