This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-serve-actions/prisma/migrations/20240127113811_make_profile_names_unique/migration.sql
2024-05-23 16:55:29 +02:00

9 lines
244 B
SQL

/*
Warnings:
- A unique constraint covering the columns `[name]` on the table `Profile` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX "Profile_name_key" ON "Profile"("name");