0
Sequel.migration do
up do
alter_table :same_table do
add_column :not_working, Jsonb
end
end
end
問題なくJsonb使用販売テーブルのcreate_table
移行:
Sequel.migration do
up do
create_table :same_table do
Jsonb :worked
end
end
end