@@ -299,7 +299,7 @@ model OrgMemberInvite {
299299 /// a separate schema (Drizzle, not Prisma) so we can't model the FK
300300 /// here. Validation happens at write time (action) and read time
301301 /// (acceptInvite).
302- rbacRoleId String ?
302+ rbacRoleId String ?
303303 organization Organization @relation (fields : [organizationId ] , references : [id ] , onDelete : Cascade , onUpdate : Cascade )
304304 organizationId String
305305
@@ -340,9 +340,9 @@ model RuntimeEnvironment {
340340 ///A memorable code for the environment
341341 shortcode String
342342
343- maximumConcurrencyLimit Int @default (5 )
344- concurrencyLimitBurstFactor Decimal @default (" 2.00 " ) @db.Decimal (4 , 2 )
345- paused Boolean @default (false )
343+ maximumConcurrencyLimit Int @default (5 )
344+ concurrencyLimitBurstFactor Decimal @default (" 2.00 " ) @db.Decimal (4 , 2 )
345+ paused Boolean @default (false )
346346 pauseSource EnvironmentPauseSource ?
347347
348348 autoEnableInternalSources Boolean @default (true )
@@ -378,21 +378,21 @@ model RuntimeEnvironment {
378378 taskScheduleInstances TaskScheduleInstance []
379379 alerts ProjectAlert []
380380
381- sessions RuntimeEnvironmentSession []
382- currentSession RuntimeEnvironmentSession ? @relation (" currentSession " , fields : [currentSessionId ] , references : [id ] , onDelete : SetNull , onUpdate : Cascade )
383- currentSessionId String ?
384- taskRunNumberCounter TaskRunNumberCounter []
385- taskRunCheckpoints TaskRunCheckpoint []
386- waitpoints Waitpoint []
387- workerInstances WorkerInstance []
388- waitpointTags WaitpointTag []
389- BulkActionGroup BulkActionGroup []
390- customerQueries CustomerQuery []
391- prompts Prompt []
392- playgroundConversations PlaygroundConversation []
393- errorGroupStates ErrorGroupState []
394- taskIdentifiers TaskIdentifier []
395- revokedApiKeys RevokedApiKey []
381+ sessions RuntimeEnvironmentSession []
382+ currentSession RuntimeEnvironmentSession ? @relation (" currentSession " , fields : [currentSessionId ] , references : [id ] , onDelete : SetNull , onUpdate : Cascade )
383+ currentSessionId String ?
384+ taskRunNumberCounter TaskRunNumberCounter []
385+ taskRunCheckpoints TaskRunCheckpoint []
386+ waitpoints Waitpoint []
387+ workerInstances WorkerInstance []
388+ waitpointTags WaitpointTag []
389+ BulkActionGroup BulkActionGroup []
390+ customerQueries CustomerQuery []
391+ prompts Prompt []
392+ playgroundConversations PlaygroundConversation []
393+ errorGroupStates ErrorGroupState []
394+ taskIdentifiers TaskIdentifier []
395+ revokedApiKeys RevokedApiKey []
396396
397397 @@unique ([projectId , slug , orgMemberId ] )
398398 @@unique ([projectId , shortcode ] )
@@ -2479,7 +2479,7 @@ model BulkActionGroup {
24792479 environment RuntimeEnvironment ? @relation (fields : [environmentId ] , references : [id ] , onDelete : Cascade , onUpdate : Cascade )
24802480 environmentId String ?
24812481
2482- type BulkActionType
2482+ type BulkActionType
24832483
24842484 /// When the group is created it's pending. After we've processed all the items it's completed. This does not mean the associated runs are completed.
24852485 status BulkActionStatus @default (PENDING )
0 commit comments