@@ -487,9 +487,9 @@ model Team {
487
487
488
488
/// @zod.custom(imports.intervalLimitsType)
489
489
bookingLimits Json ?
490
- includeManagedEventsInLimits Boolean @default (false )
490
+ includeManagedEventsInLimits Boolean @default (false )
491
491
internalNotePresets InternalNotePreset []
492
- organizationOnboarding OrganizationOnboarding ?
492
+ organizationOnboarding OrganizationOnboarding ?
493
493
494
494
@@unique ([slug , parentId ] )
495
495
@@index ([parentId ] )
@@ -1841,34 +1841,34 @@ enum BillingPeriod {
1841
1841
1842
1842
model OrganizationOnboarding {
1843
1843
// TODO: Use uuid for id
1844
- id String @id @default (uuid () )
1844
+ id String @id @default (uuid () )
1845
1845
1846
1846
// User who started the onboarding. It is different from orgOwnerEmail in case Cal.com admin is doing the onboarding for someone else.
1847
1847
// TODO: To be added when we start creating organizationOnboarding on intentToCreateOrg
1848
1848
// userId Int @unique
1849
1849
1850
1850
// We keep the email only here and don't need to connect it with user because on User deletion, we don't delete the entry here.
1851
- orgOwnerEmail String @unique
1851
+ orgOwnerEmail String @unique
1852
1852
error String ?
1853
1853
1854
1854
createdAt DateTime @default (now () )
1855
1855
updatedAt DateTime @updatedAt
1856
1856
1857
1857
// Set after organization payment is done and the organization is created
1858
- organizationId Int ? @unique
1858
+ organizationId Int ? @unique
1859
1859
organization Team ? @relation (fields : [organizationId ] , references : [id ] , onDelete : Cascade )
1860
-
1860
+
1861
1861
billingPeriod BillingPeriod
1862
1862
pricePerSeat Float
1863
1863
seats Int
1864
-
1865
- isPlatform Boolean @default (false )
1864
+
1865
+ isPlatform Boolean @default (false )
1866
1866
1867
1867
// Organization info
1868
- name String
1869
- slug String @unique
1870
- logo String ?
1871
- bio String ?
1868
+ name String
1869
+ slug String @unique
1870
+ logo String ?
1871
+ bio String ?
1872
1872
isDomainConfigured Boolean @default (false )
1873
1873
1874
1874
// Set when payment intent is there.
0 commit comments