Sequel 5.56.0 Released #1868
jeremyevans
started this conversation in
General
Replies: 1 comment
-
@jeremyevans kudos on the new homepage for Sequel, it looks great! 👏 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sequel 5.56.0 has been released!
New Features
On SQLite, Database#create_table now supports a :strict option to
use the STRICT keyword when creating the table. When this option
is used, SQLite will enforce the types for each column. When using
this option, you are limited to using the following column types:
int, integer, real, text, blob, and any (any allows for dynamic
types).
An sqlite_json_ops extension has been added, providing DSL support
for JSON functions and operators supported in SQLite 3.38.0. Usage
is similar to the pg_json_ops extension. First, you create an
appropriate object:
Then, you call methods on that object to create expressions for the
JSON functions and operators:
Other Improvements
The alter_table add_column and add_foreign_key methods now support
the :index option to create an index on the added column, for
compatibility with the :index option on the create_table column and
foreign_key methods.
The schema_dumper extension now treats the "INTEGER" type the same
as the "integer" type. This fixes some behavior when using SQLite
3.37.0+.
Sequel's website has a much improved visual design.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions