Merge EF Core migrations into a single consolidated migration - #5842
Merged
Conversation
Replaces the series of incremental migrations (Initial, AddFullTextSearch, AddKnownEndpointMaxLength, AddConfiguration, AddFailedErrorImports, AddSubscriptions, DropDuplicateQueueAddress, EventLogItems, AddFailureGroupClassifierIndex, NullableEndpointAddress, AddGroupComments, AddMessageRedirects) with a single squashed migration representing the final schema state.
rbev
approved these changes
Sep 2, 2026
rbev
requested changes
Sep 2, 2026
rbev
left a comment
Contributor
There was a problem hiding this comment.
The description on this PR is misleading since it's got SQLServer changes in it too
| }); | ||
|
|
||
| migrationBuilder.CreateTable( | ||
| name: "EventLogItems", |
Member
Author
There was a problem hiding this comment.
How is this possible, we use dotnet ef migration
Removes the explicit `ToTable("EventLogItems")` and `ToTable("ExternalIntegrationDispatchRequests")` calls from the shared entity configurations, allowing each provider's naming convention to take effect. PostgreSQL migrations now use snake_case table names (`event_log_items`, `external_integration_dispatch_requests`) while SQL Server retains PascalCase. Migration timestamps are updated to reflect the regeneration.
rbev
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces the series of incremental migrations (Initial, AddFullTextSearch, AddKnownEndpointMaxLength, AddConfiguration, AddFailedErrorImports, AddSubscriptions, DropDuplicateQueueAddress, EventLogItems, AddFailureGroupClassifierIndex, NullableEndpointAddress, AddGroupComments, AddMessageRedirects) with a single squashed migration representing the final schema state.