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
New columns are not added to the table when the migration both creates a new column and drops the existing one. After splitting those changes to separate migrations the problem no longer exists.
This issue seems to be SQLite related as with PostgreSQL it works fine.
Steps To Reproduce:
Create a migration for the table.
Add the second migration with schema change that adds a new column and drops an existing column.
The existing column has been dropped but a new column is not present in the table.