Path: | doc/release_notes/4.27.0.txt |
Last Update: | Fri Oct 06 03:25:22 +0000 2017 |
DB.create_table(:foo) do Integer :a primary_key :b, :keep_order=>true end # CREATE TABLE foo # (a integer, b integer PRIMARY KEY AUTOINCREMENT)
The schema dumper now uses this option if necessary, allowing it to correctly dump tables where the primary key column is not the first column.
Sequel.pg_jsonb_op(:metadata).set(%w'a b', [1,2,3]) # jsonb_set("metadata", ARRAY['a','b'], '[1,2,3]'::jsonb, true)