Merge branch 'main' into enterprise-license
commit
17763aca61
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
Warnings:
|
||||
|
||||
- A unique constraint covering the columns `[teamId,slug]` on the table `EventType` will be added. If there are existing duplicate values, this will fail.
|
||||
|
||||
*/
|
||||
-- CreateIndex
|
||||
CREATE UNIQUE INDEX "EventType_teamId_slug_key" ON "EventType"("teamId", "slug");
|
||||
|
|
@ -72,6 +72,7 @@ model EventType {
|
|||
successRedirectUrl String?
|
||||
|
||||
@@unique([userId, slug])
|
||||
@@unique([teamId, slug])
|
||||
}
|
||||
|
||||
model Credential {
|
||||
|
|
Loading…
Reference in New Issue