server/prisma/migrations/20231206232131_make_client_id_unique/migration.sql
2023-12-06 13:34:56 -10:00

9 lines
271 B
SQL

/*
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");