mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
12 lines
340 B
SQL
12 lines
340 B
SQL
/*
|
|
Warnings:
|
|
|
|
- A unique constraint covering the columns `[customerId]` on the table `Subscription` will be added. If there are existing duplicate values, this will fail.
|
|
|
|
*/
|
|
-- DropIndex
|
|
DROP INDEX "Subscription_planId_customerId_key";
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Subscription_customerId_key" ON "Subscription"("customerId");
|