| | | 1 | | // <auto-generated /> |
| | | 2 | | using System; |
| | | 3 | | using Elsa.Persistence.EFCore.Modules.Runtime; |
| | | 4 | | using Microsoft.EntityFrameworkCore; |
| | | 5 | | using Microsoft.EntityFrameworkCore.Infrastructure; |
| | | 6 | | using Microsoft.EntityFrameworkCore.Migrations; |
| | | 7 | | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; |
| | | 8 | | using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; |
| | | 9 | | |
| | | 10 | | #nullable disable |
| | | 11 | | |
| | | 12 | | namespace Elsa.Persistence.EFCore.PostgreSql.Migrations.Runtime |
| | | 13 | | { |
| | | 14 | | [DbContext(typeof(RuntimeElsaDbContext))] |
| | | 15 | | [Migration("20240329200711_V3_1")] |
| | | 16 | | partial class V3_1 |
| | | 17 | | { |
| | | 18 | | /// <inheritdoc /> |
| | | 19 | | protected override void BuildTargetModel(ModelBuilder modelBuilder) |
| | | 20 | | { |
| | | 21 | | #pragma warning disable 612, 618 |
| | 1 | 22 | | modelBuilder |
| | 1 | 23 | | .HasDefaultSchema("Elsa") |
| | 1 | 24 | | .HasAnnotation("ProductVersion", "7.0.14") |
| | 1 | 25 | | .HasAnnotation("Relational:MaxIdentifierLength", 63); |
| | | 26 | | |
| | 1 | 27 | | NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); |
| | | 28 | | |
| | 1 | 29 | | modelBuilder.Entity("Elsa.KeyValues.Entities.SerializedKeyValuePair", b => |
| | 1 | 30 | | { |
| | 1 | 31 | | b.Property<string>("Key") |
| | 1 | 32 | | .HasColumnType("text"); |
| | 1 | 33 | | |
| | 1 | 34 | | b.Property<string>("SerializedValue") |
| | 1 | 35 | | .IsRequired() |
| | 1 | 36 | | .HasColumnType("text"); |
| | 1 | 37 | | |
| | 1 | 38 | | b.HasKey("Key"); |
| | 1 | 39 | | |
| | 1 | 40 | | b.ToTable("KeyValuePairs", "Elsa"); |
| | 2 | 41 | | }); |
| | | 42 | | |
| | 1 | 43 | | modelBuilder.Entity("Elsa.Workflows.Runtime.Entities.ActivityExecutionRecord", b => |
| | 1 | 44 | | { |
| | 1 | 45 | | b.Property<string>("Id") |
| | 1 | 46 | | .HasColumnType("text"); |
| | 1 | 47 | | |
| | 1 | 48 | | b.Property<string>("ActivityId") |
| | 1 | 49 | | .IsRequired() |
| | 1 | 50 | | .HasColumnType("text"); |
| | 1 | 51 | | |
| | 1 | 52 | | b.Property<string>("ActivityName") |
| | 1 | 53 | | .HasColumnType("text"); |
| | 1 | 54 | | |
| | 1 | 55 | | b.Property<string>("ActivityNodeId") |
| | 1 | 56 | | .IsRequired() |
| | 1 | 57 | | .HasColumnType("text"); |
| | 1 | 58 | | |
| | 1 | 59 | | b.Property<string>("ActivityType") |
| | 1 | 60 | | .IsRequired() |
| | 1 | 61 | | .HasColumnType("text"); |
| | 1 | 62 | | |
| | 1 | 63 | | b.Property<int>("ActivityTypeVersion") |
| | 1 | 64 | | .HasColumnType("integer"); |
| | 1 | 65 | | |
| | 1 | 66 | | b.Property<DateTimeOffset?>("CompletedAt") |
| | 1 | 67 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 68 | | |
| | 1 | 69 | | b.Property<bool>("HasBookmarks") |
| | 1 | 70 | | .HasColumnType("boolean"); |
| | 1 | 71 | | |
| | 1 | 72 | | b.Property<string>("SerializedActivityState") |
| | 1 | 73 | | .HasColumnType("text"); |
| | 1 | 74 | | |
| | 1 | 75 | | b.Property<string>("SerializedActivityStateCompressionAlgorithm") |
| | 1 | 76 | | .HasColumnType("text"); |
| | 1 | 77 | | |
| | 1 | 78 | | b.Property<string>("SerializedException") |
| | 1 | 79 | | .HasColumnType("text"); |
| | 1 | 80 | | |
| | 1 | 81 | | b.Property<string>("SerializedOutputs") |
| | 1 | 82 | | .HasColumnType("text"); |
| | 1 | 83 | | |
| | 1 | 84 | | b.Property<string>("SerializedPayload") |
| | 1 | 85 | | .HasColumnType("text"); |
| | 1 | 86 | | |
| | 1 | 87 | | b.Property<string>("SerializedProperties") |
| | 1 | 88 | | .HasColumnType("text"); |
| | 1 | 89 | | |
| | 1 | 90 | | b.Property<DateTimeOffset>("StartedAt") |
| | 1 | 91 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 92 | | |
| | 1 | 93 | | b.Property<string>("Status") |
| | 1 | 94 | | .IsRequired() |
| | 1 | 95 | | .HasColumnType("text"); |
| | 1 | 96 | | |
| | 1 | 97 | | b.Property<string>("WorkflowInstanceId") |
| | 1 | 98 | | .IsRequired() |
| | 1 | 99 | | .HasColumnType("text"); |
| | 1 | 100 | | |
| | 1 | 101 | | b.HasKey("Id"); |
| | 1 | 102 | | |
| | 1 | 103 | | b.HasIndex("ActivityId") |
| | 1 | 104 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityId"); |
| | 1 | 105 | | |
| | 1 | 106 | | b.HasIndex("ActivityName") |
| | 1 | 107 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityName"); |
| | 1 | 108 | | |
| | 1 | 109 | | b.HasIndex("ActivityNodeId") |
| | 1 | 110 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityNodeId"); |
| | 1 | 111 | | |
| | 1 | 112 | | b.HasIndex("ActivityType") |
| | 1 | 113 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityType"); |
| | 1 | 114 | | |
| | 1 | 115 | | b.HasIndex("ActivityTypeVersion") |
| | 1 | 116 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityTypeVersion"); |
| | 1 | 117 | | |
| | 1 | 118 | | b.HasIndex("CompletedAt") |
| | 1 | 119 | | .HasDatabaseName("IX_ActivityExecutionRecord_CompletedAt"); |
| | 1 | 120 | | |
| | 1 | 121 | | b.HasIndex("HasBookmarks") |
| | 1 | 122 | | .HasDatabaseName("IX_ActivityExecutionRecord_HasBookmarks"); |
| | 1 | 123 | | |
| | 1 | 124 | | b.HasIndex("StartedAt") |
| | 1 | 125 | | .HasDatabaseName("IX_ActivityExecutionRecord_StartedAt"); |
| | 1 | 126 | | |
| | 1 | 127 | | b.HasIndex("Status") |
| | 1 | 128 | | .HasDatabaseName("IX_ActivityExecutionRecord_Status"); |
| | 1 | 129 | | |
| | 1 | 130 | | b.HasIndex("WorkflowInstanceId") |
| | 1 | 131 | | .HasDatabaseName("IX_ActivityExecutionRecord_WorkflowInstanceId"); |
| | 1 | 132 | | |
| | 1 | 133 | | b.HasIndex("ActivityType", "ActivityTypeVersion") |
| | 1 | 134 | | .HasDatabaseName("IX_ActivityExecutionRecord_ActivityType_ActivityTypeVersion"); |
| | 1 | 135 | | |
| | 1 | 136 | | b.ToTable("ActivityExecutionRecords", "Elsa"); |
| | 2 | 137 | | }); |
| | | 138 | | |
| | 1 | 139 | | modelBuilder.Entity("Elsa.Workflows.Runtime.Entities.StoredBookmark", b => |
| | 1 | 140 | | { |
| | 1 | 141 | | b.Property<string>("BookmarkId") |
| | 1 | 142 | | .HasColumnType("text"); |
| | 1 | 143 | | |
| | 1 | 144 | | b.Property<string>("ActivityInstanceId") |
| | 1 | 145 | | .HasColumnType("text"); |
| | 1 | 146 | | |
| | 1 | 147 | | b.Property<string>("ActivityTypeName") |
| | 1 | 148 | | .IsRequired() |
| | 1 | 149 | | .HasColumnType("text"); |
| | 1 | 150 | | |
| | 1 | 151 | | b.Property<string>("CorrelationId") |
| | 1 | 152 | | .HasColumnType("text"); |
| | 1 | 153 | | |
| | 1 | 154 | | b.Property<DateTimeOffset>("CreatedAt") |
| | 1 | 155 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 156 | | |
| | 1 | 157 | | b.Property<string>("Hash") |
| | 1 | 158 | | .IsRequired() |
| | 1 | 159 | | .HasColumnType("text"); |
| | 1 | 160 | | |
| | 1 | 161 | | b.Property<string>("SerializedMetadata") |
| | 1 | 162 | | .HasColumnType("text"); |
| | 1 | 163 | | |
| | 1 | 164 | | b.Property<string>("SerializedPayload") |
| | 1 | 165 | | .HasColumnType("text"); |
| | 1 | 166 | | |
| | 1 | 167 | | b.Property<string>("WorkflowInstanceId") |
| | 1 | 168 | | .IsRequired() |
| | 1 | 169 | | .HasColumnType("text"); |
| | 1 | 170 | | |
| | 1 | 171 | | b.HasKey("BookmarkId"); |
| | 1 | 172 | | |
| | 1 | 173 | | b.HasIndex(new[] { "ActivityInstanceId" }, "IX_StoredBookmark_ActivityInstanceId"); |
| | 1 | 174 | | |
| | 1 | 175 | | b.HasIndex(new[] { "ActivityTypeName" }, "IX_StoredBookmark_ActivityTypeName"); |
| | 1 | 176 | | |
| | 1 | 177 | | b.HasIndex(new[] { "ActivityTypeName", "Hash" }, "IX_StoredBookmark_ActivityTypeName_Hash"); |
| | 1 | 178 | | |
| | 1 | 179 | | b.HasIndex(new[] { "ActivityTypeName", "Hash", "WorkflowInstanceId" }, "IX_StoredBookmark_ActivityTy |
| | 1 | 180 | | |
| | 1 | 181 | | b.HasIndex(new[] { "CreatedAt" }, "IX_StoredBookmark_CreatedAt"); |
| | 1 | 182 | | |
| | 1 | 183 | | b.HasIndex(new[] { "Hash" }, "IX_StoredBookmark_Hash"); |
| | 1 | 184 | | |
| | 1 | 185 | | b.HasIndex(new[] { "WorkflowInstanceId" }, "IX_StoredBookmark_WorkflowInstanceId"); |
| | 1 | 186 | | |
| | 1 | 187 | | b.ToTable("Bookmarks", "Elsa"); |
| | 2 | 188 | | }); |
| | | 189 | | |
| | 1 | 190 | | modelBuilder.Entity("Elsa.Workflows.Runtime.Entities.StoredTrigger", b => |
| | 1 | 191 | | { |
| | 1 | 192 | | b.Property<string>("Id") |
| | 1 | 193 | | .HasColumnType("text"); |
| | 1 | 194 | | |
| | 1 | 195 | | b.Property<string>("ActivityId") |
| | 1 | 196 | | .IsRequired() |
| | 1 | 197 | | .HasColumnType("text"); |
| | 1 | 198 | | |
| | 1 | 199 | | b.Property<string>("Hash") |
| | 1 | 200 | | .HasColumnType("text"); |
| | 1 | 201 | | |
| | 1 | 202 | | b.Property<string>("Name") |
| | 1 | 203 | | .IsRequired() |
| | 1 | 204 | | .HasColumnType("text"); |
| | 1 | 205 | | |
| | 1 | 206 | | b.Property<string>("SerializedPayload") |
| | 1 | 207 | | .HasColumnType("text"); |
| | 1 | 208 | | |
| | 1 | 209 | | b.Property<string>("WorkflowDefinitionId") |
| | 1 | 210 | | .IsRequired() |
| | 1 | 211 | | .HasColumnType("text"); |
| | 1 | 212 | | |
| | 1 | 213 | | b.Property<string>("WorkflowDefinitionVersionId") |
| | 1 | 214 | | .IsRequired() |
| | 1 | 215 | | .HasColumnType("text"); |
| | 1 | 216 | | |
| | 1 | 217 | | b.HasKey("Id"); |
| | 1 | 218 | | |
| | 1 | 219 | | b.HasIndex("Hash") |
| | 1 | 220 | | .HasDatabaseName("IX_StoredTrigger_Hash"); |
| | 1 | 221 | | |
| | 1 | 222 | | b.HasIndex("Name") |
| | 1 | 223 | | .HasDatabaseName("IX_StoredTrigger_Name"); |
| | 1 | 224 | | |
| | 1 | 225 | | b.HasIndex("WorkflowDefinitionId") |
| | 1 | 226 | | .HasDatabaseName("IX_StoredTrigger_WorkflowDefinitionId"); |
| | 1 | 227 | | |
| | 1 | 228 | | b.HasIndex("WorkflowDefinitionVersionId") |
| | 1 | 229 | | .HasDatabaseName("IX_StoredTrigger_WorkflowDefinitionVersionId"); |
| | 1 | 230 | | |
| | 1 | 231 | | b.ToTable("Triggers", "Elsa"); |
| | 2 | 232 | | }); |
| | | 233 | | |
| | 1 | 234 | | modelBuilder.Entity("Elsa.Workflows.Runtime.Entities.WorkflowExecutionLogRecord", b => |
| | 1 | 235 | | { |
| | 1 | 236 | | b.Property<string>("Id") |
| | 1 | 237 | | .HasColumnType("text"); |
| | 1 | 238 | | |
| | 1 | 239 | | b.Property<string>("ActivityId") |
| | 1 | 240 | | .IsRequired() |
| | 1 | 241 | | .HasColumnType("text"); |
| | 1 | 242 | | |
| | 1 | 243 | | b.Property<string>("ActivityInstanceId") |
| | 1 | 244 | | .IsRequired() |
| | 1 | 245 | | .HasColumnType("text"); |
| | 1 | 246 | | |
| | 1 | 247 | | b.Property<string>("ActivityName") |
| | 1 | 248 | | .HasColumnType("text"); |
| | 1 | 249 | | |
| | 1 | 250 | | b.Property<string>("ActivityNodeId") |
| | 1 | 251 | | .IsRequired() |
| | 1 | 252 | | .HasColumnType("text"); |
| | 1 | 253 | | |
| | 1 | 254 | | b.Property<string>("ActivityType") |
| | 1 | 255 | | .IsRequired() |
| | 1 | 256 | | .HasColumnType("text"); |
| | 1 | 257 | | |
| | 1 | 258 | | b.Property<int>("ActivityTypeVersion") |
| | 1 | 259 | | .HasColumnType("integer"); |
| | 1 | 260 | | |
| | 1 | 261 | | b.Property<string>("EventName") |
| | 1 | 262 | | .HasColumnType("text"); |
| | 1 | 263 | | |
| | 1 | 264 | | b.Property<string>("Message") |
| | 1 | 265 | | .HasColumnType("text"); |
| | 1 | 266 | | |
| | 1 | 267 | | b.Property<string>("ParentActivityInstanceId") |
| | 1 | 268 | | .HasColumnType("text"); |
| | 1 | 269 | | |
| | 1 | 270 | | b.Property<long>("Sequence") |
| | 1 | 271 | | .HasColumnType("bigint"); |
| | 1 | 272 | | |
| | 1 | 273 | | b.Property<string>("SerializedActivityState") |
| | 1 | 274 | | .HasColumnType("text"); |
| | 1 | 275 | | |
| | 1 | 276 | | b.Property<string>("SerializedPayload") |
| | 1 | 277 | | .HasColumnType("text"); |
| | 1 | 278 | | |
| | 1 | 279 | | b.Property<string>("Source") |
| | 1 | 280 | | .HasColumnType("text"); |
| | 1 | 281 | | |
| | 1 | 282 | | b.Property<DateTimeOffset>("Timestamp") |
| | 1 | 283 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 284 | | |
| | 1 | 285 | | b.Property<string>("WorkflowDefinitionId") |
| | 1 | 286 | | .IsRequired() |
| | 1 | 287 | | .HasColumnType("text"); |
| | 1 | 288 | | |
| | 1 | 289 | | b.Property<string>("WorkflowDefinitionVersionId") |
| | 1 | 290 | | .IsRequired() |
| | 1 | 291 | | .HasColumnType("text"); |
| | 1 | 292 | | |
| | 1 | 293 | | b.Property<string>("WorkflowInstanceId") |
| | 1 | 294 | | .IsRequired() |
| | 1 | 295 | | .HasColumnType("text"); |
| | 1 | 296 | | |
| | 1 | 297 | | b.Property<int>("WorkflowVersion") |
| | 1 | 298 | | .HasColumnType("integer"); |
| | 1 | 299 | | |
| | 1 | 300 | | b.HasKey("Id"); |
| | 1 | 301 | | |
| | 1 | 302 | | b.HasIndex("ActivityId") |
| | 1 | 303 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityId"); |
| | 1 | 304 | | |
| | 1 | 305 | | b.HasIndex("ActivityInstanceId") |
| | 1 | 306 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityInstanceId"); |
| | 1 | 307 | | |
| | 1 | 308 | | b.HasIndex("ActivityName") |
| | 1 | 309 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityName"); |
| | 1 | 310 | | |
| | 1 | 311 | | b.HasIndex("ActivityNodeId") |
| | 1 | 312 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityNodeId"); |
| | 1 | 313 | | |
| | 1 | 314 | | b.HasIndex("ActivityType") |
| | 1 | 315 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityType"); |
| | 1 | 316 | | |
| | 1 | 317 | | b.HasIndex("ActivityTypeVersion") |
| | 1 | 318 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityTypeVersion"); |
| | 1 | 319 | | |
| | 1 | 320 | | b.HasIndex("EventName") |
| | 1 | 321 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_EventName"); |
| | 1 | 322 | | |
| | 1 | 323 | | b.HasIndex("ParentActivityInstanceId") |
| | 1 | 324 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ParentActivityInstanceId"); |
| | 1 | 325 | | |
| | 1 | 326 | | b.HasIndex("Sequence") |
| | 1 | 327 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_Sequence"); |
| | 1 | 328 | | |
| | 1 | 329 | | b.HasIndex("Timestamp") |
| | 1 | 330 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_Timestamp"); |
| | 1 | 331 | | |
| | 1 | 332 | | b.HasIndex("WorkflowDefinitionId") |
| | 1 | 333 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_WorkflowDefinitionId"); |
| | 1 | 334 | | |
| | 1 | 335 | | b.HasIndex("WorkflowDefinitionVersionId") |
| | 1 | 336 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_WorkflowDefinitionVersionId"); |
| | 1 | 337 | | |
| | 1 | 338 | | b.HasIndex("WorkflowInstanceId") |
| | 1 | 339 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_WorkflowInstanceId"); |
| | 1 | 340 | | |
| | 1 | 341 | | b.HasIndex("WorkflowVersion") |
| | 1 | 342 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_WorkflowVersion"); |
| | 1 | 343 | | |
| | 1 | 344 | | b.HasIndex("ActivityType", "ActivityTypeVersion") |
| | 1 | 345 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_ActivityType_ActivityTypeVersion"); |
| | 1 | 346 | | |
| | 1 | 347 | | b.HasIndex("Timestamp", "Sequence") |
| | 1 | 348 | | .HasDatabaseName("IX_WorkflowExecutionLogRecord_Timestamp_Sequence"); |
| | 1 | 349 | | |
| | 1 | 350 | | b.ToTable("WorkflowExecutionLogRecords", "Elsa"); |
| | 2 | 351 | | }); |
| | | 352 | | |
| | 1 | 353 | | modelBuilder.Entity("Elsa.Workflows.Runtime.Entities.WorkflowInboxMessage", b => |
| | 1 | 354 | | { |
| | 1 | 355 | | b.Property<string>("Id") |
| | 1 | 356 | | .HasColumnType("text"); |
| | 1 | 357 | | |
| | 1 | 358 | | b.Property<string>("ActivityInstanceId") |
| | 1 | 359 | | .HasColumnType("text"); |
| | 1 | 360 | | |
| | 1 | 361 | | b.Property<string>("ActivityTypeName") |
| | 1 | 362 | | .IsRequired() |
| | 1 | 363 | | .HasColumnType("text"); |
| | 1 | 364 | | |
| | 1 | 365 | | b.Property<string>("CorrelationId") |
| | 1 | 366 | | .HasColumnType("text"); |
| | 1 | 367 | | |
| | 1 | 368 | | b.Property<DateTimeOffset>("CreatedAt") |
| | 1 | 369 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 370 | | |
| | 1 | 371 | | b.Property<DateTimeOffset>("ExpiresAt") |
| | 1 | 372 | | .HasColumnType("timestamp with time zone"); |
| | 1 | 373 | | |
| | 1 | 374 | | b.Property<string>("Hash") |
| | 1 | 375 | | .IsRequired() |
| | 1 | 376 | | .HasColumnType("text"); |
| | 1 | 377 | | |
| | 1 | 378 | | b.Property<string>("SerializedBookmarkPayload") |
| | 1 | 379 | | .HasColumnType("text"); |
| | 1 | 380 | | |
| | 1 | 381 | | b.Property<string>("SerializedInput") |
| | 1 | 382 | | .HasColumnType("text"); |
| | 1 | 383 | | |
| | 1 | 384 | | b.Property<string>("WorkflowInstanceId") |
| | 1 | 385 | | .HasColumnType("text"); |
| | 1 | 386 | | |
| | 1 | 387 | | b.HasKey("Id"); |
| | 1 | 388 | | |
| | 1 | 389 | | b.HasIndex(new[] { "ActivityInstanceId" }, "IX_WorkflowInboxMessage_ActivityInstanceId"); |
| | 1 | 390 | | |
| | 1 | 391 | | b.HasIndex(new[] { "ActivityTypeName" }, "IX_WorkflowInboxMessage_ActivityTypeName"); |
| | 1 | 392 | | |
| | 1 | 393 | | b.HasIndex(new[] { "CorrelationId" }, "IX_WorkflowInboxMessage_CorrelationId"); |
| | 1 | 394 | | |
| | 1 | 395 | | b.HasIndex(new[] { "CreatedAt" }, "IX_WorkflowInboxMessage_CreatedAt"); |
| | 1 | 396 | | |
| | 1 | 397 | | b.HasIndex(new[] { "ExpiresAt" }, "IX_WorkflowInboxMessage_ExpiresAt"); |
| | 1 | 398 | | |
| | 1 | 399 | | b.HasIndex(new[] { "Hash" }, "IX_WorkflowInboxMessage_Hash"); |
| | 1 | 400 | | |
| | 1 | 401 | | b.HasIndex(new[] { "WorkflowInstanceId" }, "IX_WorkflowInboxMessage_WorkflowInstanceId"); |
| | 1 | 402 | | |
| | 1 | 403 | | b.ToTable("WorkflowInboxMessages", "Elsa"); |
| | 2 | 404 | | }); |
| | | 405 | | #pragma warning restore 612, 618 |
| | 1 | 406 | | } |
| | | 407 | | } |
| | | 408 | | } |