| | | 1 | | using Microsoft.EntityFrameworkCore.Migrations; |
| | | 2 | | |
| | | 3 | | namespace Elsa.UserTasks.Persistence.EFCore.Migrations; |
| | | 4 | | |
| | | 5 | | /// <summary> |
| | | 6 | | /// Provider-neutral initial schema operations. Provider migration assemblies call this helper so their |
| | | 7 | | /// generated migration shape stays functionally identical while EF chooses provider column types. |
| | | 8 | | /// </summary> |
| | | 9 | | public static class UserTasksSchemaMigration |
| | | 10 | | { |
| | | 11 | | public static void Up(MigrationBuilder migrationBuilder, string schema) |
| | | 12 | | { |
| | 5 | 13 | | migrationBuilder.EnsureSchema(schema); |
| | | 14 | | |
| | 5 | 15 | | migrationBuilder.CreateTable(name: "UserTasks", schema: schema, |
| | 5 | 16 | | columns: table => new |
| | 5 | 17 | | { |
| | 5 | 18 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 19 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 20 | | WorkflowDefinitionId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 21 | | WorkflowDefinitionName = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 22 | | WorkflowDefinitionVersion = table.Column<int>(nullable: true), |
| | 5 | 23 | | WorkflowInstanceId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 24 | | WorkflowInstanceReference = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 25 | | ActivityInstanceId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 26 | | BookmarkId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 27 | | MaterializationKey = table.Column<string>(maxLength: 900, nullable: false), |
| | 5 | 28 | | Title = table.Column<string>(maxLength: 500, nullable: false), |
| | 5 | 29 | | Summary = table.Column<string>(maxLength: 4000, nullable: true), |
| | 5 | 30 | | Reference = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 31 | | TaskType = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 32 | | TagsJson = table.Column<string>(nullable: false), |
| | 5 | 33 | | RequesterProvider = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 34 | | RequesterType = table.Column<string>(maxLength: 64, nullable: true), |
| | 5 | 35 | | RequesterId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 36 | | RequesterDisplayName = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 37 | | Priority = table.Column<int>(nullable: false), |
| | 5 | 38 | | DueAt = table.Column<DateTimeOffset>(nullable: true), |
| | 5 | 39 | | IsOverdue = table.Column<bool>(nullable: false), |
| | 5 | 40 | | Status = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 41 | | TimeoutEnabled = table.Column<bool>(nullable: false), |
| | 5 | 42 | | CancellationEnabled = table.Column<bool>(nullable: false), |
| | 5 | 43 | | AllowManagerExclusionOverride = table.Column<bool>(nullable: false), |
| | 5 | 44 | | MembershipResolutionMode = table.Column<string>(maxLength: 32, nullable: true), |
| | 5 | 45 | | AssigneeProvider = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 46 | | AssigneeType = table.Column<string>(maxLength: 64, nullable: true), |
| | 5 | 47 | | AssigneeId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 48 | | AssigneeDisplayName = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 49 | | InstructionsJson = table.Column<string>(nullable: false), |
| | 5 | 50 | | TaskDataJson = table.Column<string>(nullable: false), |
| | 5 | 51 | | FormReferenceJson = table.Column<string>(nullable: true), |
| | 5 | 52 | | PinnedFormJson = table.Column<string>(nullable: true), |
| | 5 | 53 | | ActionsJson = table.Column<string>(nullable: true), |
| | 5 | 54 | | InvitationDefinitionsJson = table.Column<string>(nullable: false), |
| | 5 | 55 | | HealthIssuesJson = table.Column<string>(nullable: false), |
| | 5 | 56 | | HealthSeverity = table.Column<string>(maxLength: 32, nullable: true), |
| | 5 | 57 | | HealthCode = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 58 | | HealthMessage = table.Column<string>(maxLength: 4000, nullable: true), |
| | 5 | 59 | | CompletionActionKey = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 60 | | CompletionDataJson = table.Column<string>(nullable: true), |
| | 5 | 61 | | CompletionActorJson = table.Column<string>(nullable: true), |
| | 5 | 62 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 63 | | UpdatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 64 | | AssignedAt = table.Column<DateTimeOffset>(nullable: true), |
| | 5 | 65 | | CompletedAt = table.Column<DateTimeOffset>(nullable: true), |
| | 5 | 66 | | Revision = table.Column<int>(nullable: false), |
| | 5 | 67 | | CreatedFromBookmarkRevision = table.Column<long>(nullable: true) |
| | 5 | 68 | | }, |
| | 10 | 69 | | constraints: table => table.PrimaryKey("PK_UserTasks", x => x.Id)); |
| | | 70 | | |
| | 5 | 71 | | migrationBuilder.CreateTable(name: "UserTaskCandidates", schema: schema, |
| | 5 | 72 | | columns: table => new |
| | 5 | 73 | | { |
| | 5 | 74 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 75 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 76 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 77 | | Provider = table.Column<string>(maxLength: 200, nullable: false), |
| | 5 | 78 | | ParticipantKey = table.Column<string>(maxLength: 800, nullable: false), |
| | 5 | 79 | | ParticipantType = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 80 | | ParticipantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 81 | | DisplayName = table.Column<string>(maxLength: 500, nullable: true), |
| | 5 | 82 | | Source = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 83 | | SourceGroupProvider = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 84 | | SourceGroupId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 85 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 86 | | UpdatedAt = table.Column<DateTimeOffset>(nullable: false) |
| | 5 | 87 | | }, |
| | 10 | 88 | | constraints: table => table.PrimaryKey("PK_UserTaskCandidates", x => x.Id)); |
| | | 89 | | |
| | 5 | 90 | | migrationBuilder.CreateTable(name: "UserTaskSnapshotMembers", schema: schema, |
| | 5 | 91 | | columns: table => new |
| | 5 | 92 | | { |
| | 5 | 93 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 94 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 95 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 96 | | Provider = table.Column<string>(maxLength: 200, nullable: false), |
| | 5 | 97 | | ParticipantKey = table.Column<string>(maxLength: 800, nullable: false), |
| | 5 | 98 | | ParticipantType = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 99 | | ParticipantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 100 | | SourceGroupProvider = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 101 | | SourceGroupId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 102 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false) |
| | 5 | 103 | | }, |
| | 10 | 104 | | constraints: table => table.PrimaryKey("PK_UserTaskSnapshotMembers", x => x.Id)); |
| | | 105 | | |
| | 5 | 106 | | migrationBuilder.CreateTable(name: "UserTaskExclusions", schema: schema, |
| | 5 | 107 | | columns: table => new |
| | 5 | 108 | | { |
| | 5 | 109 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 110 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 111 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 112 | | Provider = table.Column<string>(maxLength: 200, nullable: false), |
| | 5 | 113 | | ParticipantKey = table.Column<string>(maxLength: 800, nullable: false), |
| | 5 | 114 | | ParticipantType = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 115 | | ParticipantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 116 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false) |
| | 5 | 117 | | }, |
| | 10 | 118 | | constraints: table => table.PrimaryKey("PK_UserTaskExclusions", x => x.Id)); |
| | | 119 | | |
| | 5 | 120 | | migrationBuilder.CreateTable(name: "UserTaskEvents", schema: schema, |
| | 5 | 121 | | columns: table => new |
| | 5 | 122 | | { |
| | 5 | 123 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 124 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 125 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 126 | | Revision = table.Column<int>(nullable: false), |
| | 5 | 127 | | EventType = table.Column<string>(maxLength: 64, nullable: false), |
| | 5 | 128 | | OccurredAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 129 | | OperationId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 130 | | ActorProvider = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 131 | | ActorType = table.Column<string>(maxLength: 64, nullable: true), |
| | 5 | 132 | | ActorId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 133 | | ActorJson = table.Column<string>(nullable: true), |
| | 5 | 134 | | Reason = table.Column<string>(maxLength: 4000, nullable: true), |
| | 5 | 135 | | MetadataJson = table.Column<string>(nullable: false) |
| | 5 | 136 | | }, |
| | 10 | 137 | | constraints: table => table.PrimaryKey("PK_UserTaskEvents", x => x.Id)); |
| | | 138 | | |
| | 5 | 139 | | migrationBuilder.CreateTable(name: "UserTaskOperations", schema: schema, |
| | 5 | 140 | | columns: table => new |
| | 5 | 141 | | { |
| | 5 | 142 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 143 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 144 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 145 | | OperationId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 146 | | Kind = table.Column<string>(maxLength: 64, nullable: false), |
| | 5 | 147 | | ExpectedRevision = table.Column<int>(nullable: false), |
| | 5 | 148 | | RequestHash = table.Column<string>(maxLength: 128, nullable: false), |
| | 5 | 149 | | Status = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 150 | | Attempts = table.Column<int>(nullable: false), |
| | 5 | 151 | | SafeResultJson = table.Column<string>(nullable: true), |
| | 5 | 152 | | ProtectedPayloadJson = table.Column<string>(nullable: true), |
| | 5 | 153 | | ActionKey = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 154 | | ErrorCode = table.Column<string>(maxLength: 200, nullable: true), |
| | 5 | 155 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 156 | | UpdatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 157 | | CompletedAt = table.Column<DateTimeOffset>(nullable: true) |
| | 5 | 158 | | }, |
| | 10 | 159 | | constraints: table => table.PrimaryKey("PK_UserTaskOperations", x => x.Id)); |
| | | 160 | | |
| | 5 | 161 | | migrationBuilder.CreateTable(name: "UserTaskInvitations", schema: schema, |
| | 5 | 162 | | columns: table => new |
| | 5 | 163 | | { |
| | 5 | 164 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 165 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 166 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 167 | | SiblingGroupId = table.Column<string>(maxLength: 450, nullable: true), |
| | 5 | 168 | | RecipientJson = table.Column<string>(nullable: true), |
| | 5 | 169 | | TokenHash = table.Column<string>(maxLength: 256, nullable: false), |
| | 5 | 170 | | VerifierProvider = table.Column<string>(maxLength: 200, nullable: false), |
| | 5 | 171 | | AllowedActionsJson = table.Column<string>(nullable: false), |
| | 5 | 172 | | ChallengeJson = table.Column<string>(nullable: true), |
| | 5 | 173 | | Status = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 174 | | IssuedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 175 | | ExpiresAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 176 | | VerifiedAt = table.Column<DateTimeOffset>(nullable: true), |
| | 5 | 177 | | ConsumedAt = table.Column<DateTimeOffset>(nullable: true), |
| | 5 | 178 | | RevokedAt = table.Column<DateTimeOffset>(nullable: true) |
| | 5 | 179 | | }, |
| | 10 | 180 | | constraints: table => table.PrimaryKey("PK_UserTaskInvitations", x => x.Id)); |
| | | 181 | | |
| | 5 | 182 | | migrationBuilder.CreateTable(name: "UserTaskInvitationDeliveries", schema: schema, |
| | 5 | 183 | | columns: table => new |
| | 5 | 184 | | { |
| | 5 | 185 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 186 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 187 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 188 | | InvitationId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 189 | | DispatcherProvider = table.Column<string>(maxLength: 200, nullable: false), |
| | 5 | 190 | | EncryptedToken = table.Column<string>(nullable: false), |
| | 5 | 191 | | DeliveryMetadataJson = table.Column<string>(nullable: true), |
| | 5 | 192 | | Status = table.Column<string>(maxLength: 32, nullable: false), |
| | 5 | 193 | | Attempts = table.Column<int>(nullable: false), |
| | 5 | 194 | | AvailableAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 195 | | ExpiresAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 196 | | LastErrorCode = table.Column<string>(maxLength: 128, nullable: true), |
| | 5 | 197 | | CreatedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 198 | | DeliveredAt = table.Column<DateTimeOffset>(nullable: true) |
| | 5 | 199 | | }, |
| | 10 | 200 | | constraints: table => table.PrimaryKey("PK_UserTaskInvitationDeliveries", x => x.Id)); |
| | | 201 | | |
| | 5 | 202 | | migrationBuilder.CreateTable(name: "UserTaskGuestSessions", schema: schema, |
| | 5 | 203 | | columns: table => new |
| | 5 | 204 | | { |
| | 5 | 205 | | Id = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 206 | | TenantId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 207 | | TaskId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 208 | | InvitationId = table.Column<string>(maxLength: 450, nullable: false), |
| | 5 | 209 | | SessionTokenHash = table.Column<string>(maxLength: 256, nullable: false), |
| | 5 | 210 | | GuestParticipantJson = table.Column<string>(nullable: false), |
| | 5 | 211 | | CapabilitiesJson = table.Column<string>(nullable: false), |
| | 5 | 212 | | IssuedAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 213 | | ExpiresAt = table.Column<DateTimeOffset>(nullable: false), |
| | 5 | 214 | | RevokedAt = table.Column<DateTimeOffset>(nullable: true) |
| | 5 | 215 | | }, |
| | 10 | 216 | | constraints: table => table.PrimaryKey("PK_UserTaskGuestSessions", x => x.Id)); |
| | | 217 | | |
| | 5 | 218 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_MaterializationKey", table: "UserTasks", columns: ["Tena |
| | 5 | 219 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_BookmarkId", table: "UserTasks", columns: ["TenantId", " |
| | 5 | 220 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_Status", table: "UserTasks", columns: ["TenantId", "Stat |
| | 5 | 221 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_Assignee", table: "UserTasks", columns: ["TenantId", "As |
| | 5 | 222 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_Priority", table: "UserTasks", columns: ["TenantId", "Pr |
| | 5 | 223 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_DueAt", table: "UserTasks", columns: ["TenantId", "DueAt |
| | 5 | 224 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_WorkflowDefinition", table: "UserTasks", columns: ["Tena |
| | 5 | 225 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_WorkflowInstance", table: "UserTasks", columns: ["Tenant |
| | 5 | 226 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_ActivityInstance", table: "UserTasks", columns: ["Tenant |
| | 5 | 227 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_CreatedAt", table: "UserTasks", columns: ["TenantId", "C |
| | 5 | 228 | | migrationBuilder.CreateIndex(name: "IX_UserTasks_Tenant_CompletedAt", table: "UserTasks", columns: ["TenantId", |
| | 5 | 229 | | migrationBuilder.CreateIndex(name: "IX_UserTaskCandidates_Tenant_Task_Participant", table: "UserTaskCandidates", |
| | 5 | 230 | | migrationBuilder.CreateIndex(name: "IX_UserTaskCandidates_Tenant_Participant", table: "UserTaskCandidates", colu |
| | 5 | 231 | | migrationBuilder.CreateIndex(name: "IX_UserTaskCandidates_Tenant_Task", table: "UserTaskCandidates", columns: [" |
| | 5 | 232 | | migrationBuilder.CreateIndex(name: "IX_UserTaskCandidates_Tenant_Task_ParticipantKey", table: "UserTaskCandidate |
| | 5 | 233 | | migrationBuilder.CreateIndex(name: "IX_UserTaskSnapshotMembers_Tenant_Task_Participant", table: "UserTaskSnapsho |
| | 5 | 234 | | migrationBuilder.CreateIndex(name: "IX_UserTaskSnapshotMembers_Tenant_Task_ParticipantKey", table: "UserTaskSnap |
| | 5 | 235 | | migrationBuilder.CreateIndex(name: "IX_UserTaskExclusions_Tenant_Task_Participant", table: "UserTaskExclusions", |
| | 5 | 236 | | migrationBuilder.CreateIndex(name: "IX_UserTaskExclusions_Tenant_Task_ParticipantKey", table: "UserTaskExclusion |
| | | 237 | | // Not unique: audit is append-only and several entries may share a revision, because an audited read |
| | | 238 | | // (a masked-field reveal) records without consuming the aggregate's concurrency token. |
| | 5 | 239 | | migrationBuilder.CreateIndex(name: "IX_UserTaskEvents_Task_Revision", table: "UserTaskEvents", columns: ["TaskId |
| | 5 | 240 | | migrationBuilder.CreateIndex(name: "IX_UserTaskEvents_Tenant_Task_OccurredAt", table: "UserTaskEvents", columns: |
| | 5 | 241 | | migrationBuilder.CreateIndex(name: "IX_UserTaskOperations_Tenant_Task_Operation", table: "UserTaskOperations", c |
| | 5 | 242 | | migrationBuilder.CreateIndex(name: "IX_UserTaskOperations_Tenant_Status_UpdatedAt", table: "UserTaskOperations", |
| | 5 | 243 | | migrationBuilder.CreateIndex(name: "IX_UserTaskInvitations_TokenHash", table: "UserTaskInvitations", column: "To |
| | 5 | 244 | | migrationBuilder.CreateIndex(name: "IX_UserTaskInvitations_Tenant_Task_Status", table: "UserTaskInvitations", co |
| | 5 | 245 | | migrationBuilder.CreateIndex(name: "IX_UserTaskInvitations_Tenant_Status_ExpiresAt", table: "UserTaskInvitations |
| | 5 | 246 | | migrationBuilder.CreateIndex(name: "IX_UserTaskInvitationDeliveries_Tenant_Status_AvailableAt", table: "UserTask |
| | 5 | 247 | | migrationBuilder.CreateIndex(name: "IX_UserTaskInvitationDeliveries_Tenant_Invitation", table: "UserTaskInvitati |
| | 5 | 248 | | migrationBuilder.CreateIndex(name: "IX_UserTaskGuestSessions_SessionTokenHash", table: "UserTaskGuestSessions", |
| | 5 | 249 | | migrationBuilder.CreateIndex(name: "IX_UserTaskGuestSessions_Tenant_Task_ExpiresAt", table: "UserTaskGuestSessio |
| | 5 | 250 | | migrationBuilder.CreateIndex(name: "IX_UserTaskGuestSessions_Tenant_Invitation", table: "UserTaskGuestSessions", |
| | 5 | 251 | | } |
| | | 252 | | |
| | | 253 | | public static void Down(MigrationBuilder migrationBuilder, string schema) |
| | | 254 | | { |
| | 0 | 255 | | migrationBuilder.DropTable("UserTaskGuestSessions", schema); |
| | 0 | 256 | | migrationBuilder.DropTable("UserTaskInvitationDeliveries", schema); |
| | 0 | 257 | | migrationBuilder.DropTable("UserTaskInvitations", schema); |
| | 0 | 258 | | migrationBuilder.DropTable("UserTaskOperations", schema); |
| | 0 | 259 | | migrationBuilder.DropTable("UserTaskEvents", schema); |
| | 0 | 260 | | migrationBuilder.DropTable("UserTaskExclusions", schema); |
| | 0 | 261 | | migrationBuilder.DropTable("UserTaskSnapshotMembers", schema); |
| | 0 | 262 | | migrationBuilder.DropTable("UserTaskCandidates", schema); |
| | 0 | 263 | | migrationBuilder.DropTable("UserTasks", schema); |
| | 0 | 264 | | } |
| | | 265 | | } |