You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When changing only the index? setting on a reference (e.g., from index?: true to index?: false), the migration generator was emitting unnecessary operations that dropped and re-added the same foreign key. The migration should only create or drop the index, not touch the foreign key.
Changes
Added references_differ_beyond_index?/2 helper to detect when reference configurations differ only in the index? setting
Updated alter_attribute_events to skip FK drop/alter operations when only index? differs
Fixed RemoveReferenceIndex to properly pass old_multitenancy for correct index generation
Added test case to verify index-only changes don't emit FK operations
How to test
Create a resource with a reference that has index?: true:
postgres do
references do
reference(:post, index?: true)
end
end
Run mix ash_postgres.generate_migrations to create the initial migration (should include FK and index creation)
Change the reference to index?: false:
postgres do
references do
reference(:post, index?: false)
end
end
Does NOT contain drop constraint(:table_name, "..._fkey")
Does NOT contain modify :reference_column, references(...)
The test case "changing only reference index? does not drop and re-add foreign key (issue #611)" in test/migration_generator_test.exs verifies this behavior.
The reason will be displayed to describe this comment to others. Learn more.
The changelog is automatically managed. Please remove this and I'll merge 🥳
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
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.
Contributor checklist
Leave anything that you believe does not apply unchecked.