mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-30 10:19:37 +02:00
13 lines
432 B
MySQL
13 lines
432 B
MySQL
|
CREATE TABLE IF NOT EXISTS "userVisitedAdventures" (
|
||
|
"user_id" text NOT NULL,
|
||
|
"adventure_name" text NOT NULL,
|
||
|
"location" text,
|
||
|
"adventure_visited" text
|
||
|
);
|
||
|
--> statement-breakpoint
|
||
|
DO $$ BEGIN
|
||
|
ALTER TABLE "userVisitedAdventures" ADD CONSTRAINT "userVisitedAdventures_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "user"("id") ON DELETE no action ON UPDATE no action;
|
||
|
EXCEPTION
|
||
|
WHEN duplicate_object THEN null;
|
||
|
END $$;
|