3 lines
161 B
SQL
3 lines
161 B
SQL
-- Add unique constraint to EventParticipant table
|
|
CREATE UNIQUE INDEX "event_participants_eventId_playerId_key" ON "event_participants"("eventId", "playerId");
|