Skip to content

Reshape 0.2.0

Compare
Choose a tag to compare
@fabianlindfors fabianlindfors released this 12 Jan 12:36
· 98 commits to main since this release

Features:

  • alter_column can now change the default value of a column
  • Indexes can now be removed using the new remove_index action

Improvements:

  • Reduced the usage of transactions when completing transactions. Transactions are now held for a much shorter time, decreasing the risk of interfering with other queries. Most migrations also no longer require a transaction at all when completing.
  • Removed usage of transactions when aborting a migration. This decreases the risk of an abort interfering with other queries.
  • When aborting an add_index migration, the index will now be removed concurrently which avoids locking up the table.