Sequel 5.30.0 has been released!
= New Features
* Sequel now supports generated columns on SQLite 3.31+ using the
:generated_always_as and :generated_type options. Example:
DB.create_table(:table) do
primary_key :id
Numeric :amount, null: false
Numeric :tax, null: false
Numeric :total, generated_always_as: (Sequel[:amount] + :tax)
end
= Other Improvements
* The Database#transaction :before_retry option is now called before
retrying the transaction even when the :num_retries option is set
to nil.
* The gem no longer ships with specs and older release notes, reducing
the gem size by over 40%.
Thanks,
Jeremy
--
You received this message because you are subscribed to the Google Groups
"sequel-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/sequel-talk/4f4a91f0-ba38-4316-91c5-80184a89a4f7%40googlegroups.com.