Files
var-monorepo/packages/database/prisma/migrations/20250216110750_/migration.sql
2025-02-16 12:23:31 +01:00

13 lines
461 B
SQL

/*
Warnings:
- A unique constraint covering the columns `[publicId]` on the table `users` will be added. If there are existing duplicate values, this will fail.
- Added the required column `publicId` to the `users` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "users" ADD COLUMN "publicId" TEXT NOT NULL;
-- CreateIndex
CREATE UNIQUE INDEX "users_publicId_key" ON "users"("publicId");