From 658406fec961964bf1d7fcd744dfe9e157b28156 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:37:13 +0000 Subject: [PATCH 1/2] Initial plan From 22ee4208b452bdc4b22888e67866bb7ed576e67a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:40:43 +0000 Subject: [PATCH 2/2] Add missing AggregateFaultCount column to migration Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com> --- .../Elsa.Persistence.Dapper.Migrations/Runtime/V3_7.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/persistence/Elsa.Persistence.Dapper.Migrations/Runtime/V3_7.cs b/src/modules/persistence/Elsa.Persistence.Dapper.Migrations/Runtime/V3_7.cs index 46e5891..1c990c9 100644 --- a/src/modules/persistence/Elsa.Persistence.Dapper.Migrations/Runtime/V3_7.cs +++ b/src/modules/persistence/Elsa.Persistence.Dapper.Migrations/Runtime/V3_7.cs @@ -19,6 +19,7 @@ public override void Up() Alter.Table("ActivityExecutionRecords").AddColumn("SchedulingActivityId").AsString().Nullable(); Alter.Table("ActivityExecutionRecords").AddColumn("SchedulingWorkflowInstanceId").AsString().Nullable(); Alter.Table("ActivityExecutionRecords").AddColumn("CallStackDepth").AsInt32().Nullable(); + Alter.Table("ActivityExecutionRecords").AddColumn("AggregateFaultCount").AsInt32().NotNullable().WithDefaultValue(0); } /// @@ -29,5 +30,6 @@ public override void Down() Delete.Column("SchedulingActivityId").FromTable("ActivityExecutionRecords"); Delete.Column("SchedulingWorkflowInstanceId").FromTable("ActivityExecutionRecords"); Delete.Column("CallStackDepth").FromTable("ActivityExecutionRecords"); + Delete.Column("AggregateFaultCount").FromTable("ActivityExecutionRecords"); } }