minecraft-docker/backend/prisma/migrations/20221007122620_discord/migration.sql

12 lines
317 B
SQL

/*
Warnings:
- A unique constraint covering the columns `[discordId]` on the table `User` will be added. If there are existing duplicate values, this will fail.
*/
-- AlterTable
ALTER TABLE "User" ADD COLUMN "discordId" TEXT;
-- CreateIndex
CREATE UNIQUE INDEX "User_discordId_key" ON "User"("discordId");