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
A migration that contains multiple backfill-requiring operations on the same column will currently fail.
Fixing this is probably a large change to how pgroll works - currently operations are largely independent of one another. To make this work, column duplication and trigger creation would have to move out of the individual operations happen after all operations have Started.
A migration that contains multiple backfill-requiring operations on the same column will currently fail.
Fixing this is probably a large change to how
pgroll
works - currently operations are largely independent of one another. To make this work, column duplication and trigger creation would have to move out of the individual operations happen after all operations haveStart
ed.Reproduction
Create a table:
Then run a migration that removes a constraint from the
name
column and sets its nullability:The migration fails because both operations attempt to duplicate the
name
column.The text was updated successfully, but these errors were encountered: