File tree Expand file tree Collapse file tree
src/backend/src/prisma/migrations/20260201001906_calendar Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -397,6 +397,7 @@ INSERT INTO "public"."Event_Type" (
397397 " description" ,
398398 " onlyHeadsOrAboveForEventCreation" ,
399399 " requiresConfirmation" ,
400+ " sendSlackNotifications" ,
400401 " organizationId"
401402)
402403SELECT DISTINCT ON (org." organizationId" )
@@ -418,6 +419,7 @@ SELECT DISTINCT ON (org."organizationId")
418419 false, -- description
419420 true, -- onlyHeadsOrAboveForEventCreation
420421 true, -- requiresConfirmation
422+ true, -- sendSlackNotifications
421423 org." organizationId"
422424FROM " public" ." Organization" org
423425WHERE EXISTS (
@@ -447,6 +449,7 @@ INSERT INTO "public"."Event_Type" (
447449 " description" ,
448450 " onlyHeadsOrAboveForEventCreation" ,
449451 " requiresConfirmation" ,
452+ " sendSlackNotifications" ,
450453 " organizationId"
451454)
452455SELECT DISTINCT ON (org." organizationId" )
@@ -468,6 +471,7 @@ SELECT DISTINCT ON (org."organizationId")
468471 false, -- description
469472 false, -- onlyHeadsOrAboveForEventCreation
470473 false, -- requiresConfirmation
474+ false, -- sendSlackNotifications
471475 org." organizationId"
472476FROM " public" ." Organization" org
473477WHERE EXISTS (
You can’t perform that action at this time.
0 commit comments