- Why add_column not support index: true ?
- Any plan to support
postgres jsonb_path_ops
GIN index with somethings likeindex: {using: "gin_path"}
? it seem like more fast than gin, and less diskspace usage. I had to use like this in migrate
CREATE INDEX index_notifications_on_data ON notifications USING gin (data jsonb_path_ops);
But schema.rb is not worked, it only generate default gin index jsonb_ops instead of jsonb_path_ops.