You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CONSTRAINT"installation_identities_logical_identity_unique" UNIQUE NULLS NOT DISTINCT("venue_id","game_id","region","network","version","cabinet_model"),
ALTERTABLE"arcade"."installation_identities" ADD CONSTRAINT"installation_identities_venue_id_venues_id_fk"FOREIGN KEY ("venue_id") REFERENCES"arcade"."venues"("id") ON DELETE cascadeONUPDATE no action;--> statement-breakpoint
19
+
ALTERTABLE"arcade"."installation_identities" ADD CONSTRAINT"installation_identities_game_id_games_id_fk"FOREIGN KEY ("game_id") REFERENCES"arcade"."games"("id") ON DELETE no action ONUPDATE no action;--> statement-breakpoint
20
+
CREATEINDEX "installation_identities_venue_idx" ON"arcade"."installation_identities" USING btree ("venue_id");--> statement-breakpoint
21
+
CREATEINDEX "installation_identities_game_idx" ON"arcade"."installation_identities" USING btree ("game_id");--> statement-breakpoint
22
+
ALTERTABLE"arcade"."installations" ADD CONSTRAINT"installations_installation_identity_id_installation_identities_id_fk"FOREIGN KEY ("installation_identity_id") REFERENCES"arcade"."installation_identities"("id") ON DELETE cascadeONUPDATE no action;--> statement-breakpoint
23
+
CREATEINDEX "installations_identity_idx" ON"arcade"."installations" USING btree ("installation_identity_id");--> statement-breakpoint
0 commit comments