I'm using Sequel with Padrino and the following migration raised the uninitialized constant Jsonb (NameError)
error:
Sequel.migration do
up do
alter_table :same_table do
add_column :not_working, Jsonb
end
end
end
The create_table
migration for the sale table used Jsonb without issue:
Sequel.migration do
up do
create_table :same_table do
Jsonb :worked
end
end
end