block sending emails on limits (#216)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Team" ADD COLUMN "dailyEmailLimit" INTEGER NOT NULL DEFAULT 10000,
|
||||
ADD COLUMN "isBlocked" BOOLEAN NOT NULL DEFAULT false,
|
||||
ADD COLUMN "isVerified" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
||||
-- DropEnum
|
||||
DROP TYPE "SendingDisabledReason";
|
@@ -107,6 +107,9 @@ model Team {
|
||||
apiRateLimit Int @default(2)
|
||||
billingEmail String?
|
||||
sesTenantId String?
|
||||
isVerified Boolean @default(false)
|
||||
dailyEmailLimit Int @default(10000)
|
||||
isBlocked Boolean @default(false)
|
||||
teamUsers TeamUser[]
|
||||
domains Domain[]
|
||||
apiKeys ApiKey[]
|
||||
|
Reference in New Issue
Block a user