mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-15 20:00:33 +01:00
12 lines
301 B
SQL
12 lines
301 B
SQL
/*
|
|
Warnings:
|
|
|
|
- A unique constraint covering the columns `[ldapDN]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "ldapDN" TEXT;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "User_ldapDN_key" ON "User"("ldapDN");
|