fix: remove erroneously added context_policy column from init.sql - #3517
Open
JasonW404 wants to merge 1 commit into
Open
fix: remove erroneously added context_policy column from init.sql#3517JasonW404 wants to merge 1 commit into
JasonW404 wants to merge 1 commit into
Conversation
The context_policy JSONB column was mistakenly added directly to init.sql. It should only be introduced via the existing migration v2.3.0_0718_add_agent_context_policy.sql, which uses ADD COLUMN IF NOT EXISTS for idempotent application.
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.
Summary
Remove the
context_policy JSONBcolumn that was mistakenly added directly todeploy/sql/init.sql.Problem
The
context_policycolumn was incorrectly inserted into theag_tenant_agent_ttable definition ininit.sql. Per the project's SQL management convention,init.sqlmust remain as the static baseline schema — all subsequent schema changes should only be introduced through versioned migration files underdeploy/sql/migrations/.Fix
context_policy JSONB,) fromdeploy/sql/init.sqlv2.3.0_0718_add_agent_context_policy.sql, which usesADD COLUMN IF NOT EXISTSfor idempotent applicationImpact
init.sqlto its correct static baseline state