15 lines
343 B
SQL
15 lines
343 B
SQL
/*
|
|
Warnings:
|
|
|
|
- A unique constraint covering the columns `[idNot]` on the table `users` will be added. If there are existing duplicate values, this will fail.
|
|
|
|
*/
|
|
-- DropIndex
|
|
DROP INDEX "users_contact_uid_uid_key";
|
|
|
|
-- DropIndex
|
|
DROP INDEX "users_idNot_uid_key";
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "users_idNot_key" ON "users"("idNot");
|