sourcebot/packages/db/prisma/migrations/20250206180955_add_domain/migration.sql

13 lines
441 B
MySQL
Raw Normal View History

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