Skip to content

PostgreSQL 1.0.0 RC 4.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@tanner0101 tanner0101 released this 22 Jun 22:23
· 153 commits to main since this release

New:

  • New methods for creating and dropping indexes (#84).
conn.create(index: "test_idx", on: \Planet.name).unique.run()
conn.drop(index: "test_idx").run()

Fixed:

  • Upsert clause now correctly allows columns to be passed through (#81).