Files
MIS-Contro-Tower/prisma/migrations/20251217001526_machine_api_key/migration.sql
2025-12-17 20:24:06 +00:00

12 lines
317 B
SQL

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