kysely

A type-safe typescript SQL query builder

MIT License

Downloads
1.9M
Stars
9.3K
Committers
109

Bot releases are hidden (Show)

kysely - 0.9.2

Published by koskimas almost 3 years ago

Changed the type of CompiledQuery.parameters from any[] to unknown[].

kysely - 0.9.1

Published by koskimas almost 3 years ago

  • Fixed the noWait method
  • General code cleanup
kysely - 0.9.0

Published by koskimas almost 3 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.