server/prisma/migrations/20231206232131_make_client_id_unique/migration.sql

9 lines
271 B
MySQL
Raw Normal View History

2023-12-07 00:34:56 +01:00
/*
Warnings:
- A unique constraint covering the columns `[client_id]` on the table `Application` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX "Application_client_id_key" ON "Application"("client_id");