github kysely-org/kysely 0.9.0

latest releases: 0.27.4, 0.27.3, 0.27.2...
2 years ago

Breaking changes

increments() no longer works on PostgreSQL.

ColumnDefinitionBuilder.increments() no longer converts the column's data type to serial or bigserial on postgres, but instead always adds an auto_increments specifier. This means that you need to remove increments calls in postgres migrations and use the serial or bigserial data type directly. Simply remove the increments call and change int or integer to serial and bigint or biginteger to bigserial on that column.

Don't miss a new kysely release

NewReleases is sending notifications on new releases.