FUND-2357 Using new field overigeData , removing old one stage 2#154
Merged
FUND-2357 Using new field overigeData , removing old one stage 2#154
Conversation
9c0307a to
06048fa
Compare
568bb51 to
2bc727d
Compare
2bc727d to
1f92973
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR completes stage 2 of the overigeData column migration (FUND-2357), consolidating the dual-column setup (overigedata text + overigedata_jsonb jsonb) into a single overigedata column of type jsonb. The old text column and temporary backfill index are dropped, and the overigedata_jsonb column is renamed to overigedata.
Changes:
- New EF Core migration (
cutover_overigedata_to_jsonb) that drops the old text column, sets NOT NULL on the jsonb column, and renames it tooverigedata. - Removes the
OverigeDataJsonbproperty from theOverigeZaakObjectentity, updating all mapping profiles, updaters, and tests to use the unifiedOverigeDataproperty. - Uncomments the backfill
UPDATESQL in the first migration for fresh deployment scenarios.
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
OverigeZaakObject.cs |
Removes OverigeDataJsonb property; OverigeData now maps to jsonb column with [Required] |
ZrcDbContext.cs |
Removes partial backfill index configuration |
20260225150241_cutover_overigedata_to_jsonb.cs |
New migration: drops index, drops old column, sets NOT NULL, renames jsonb column |
20260225150241_...Designer.cs |
Auto-generated migration designer snapshot |
ZrcDbContextModelSnapshot.cs |
Updated model snapshot reflecting single OverigeData jsonb column |
20260225120036_...cs |
Uncomments backfill UPDATE for fresh deployments |
RequestToDomainProfile.cs (v1) |
Maps OverigeData instead of OverigeDataJsonb |
DomainToResponseProfile.cs (v1) |
Reads from OverigeData instead of OverigeDataJsonb |
RequestToDomainProfile.cs (v1/5) |
Maps OverigeData instead of OverigeDataJsonb |
ZaakObjectUpdater.cs (v1/2) |
Updates OverigeData instead of OverigeDataJsonb |
DomainToResponseProfileTests.cs |
Test updated to use OverigeData property |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
1f92973 to
b0fd860
Compare
heuvea
approved these changes
Mar 12, 2026
b0fd860 to
add3dac
Compare
Grabauskas
approved these changes
Mar 25, 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.
Pull Request
Description
Using new overigeData field jsonb type, removed old one
Type of Change
Related Issues
FUND-2357
Testing
Checklist