Open
Description
It seems a version bump of the maglevcms gem is required for the newly added sqlite3 support to be included...
Example migration from the current version
maglev-core/db/migrate/20220612092235_add_style_to_sites.rb
Lines 1 to 11 in 5ecf123
Same file in the installed gem
root@f44fa69e1460:/usr/local/bundle/gems/maglevcms-1.8.0# cat db/migrate/20220612092235_add_style_to_sites.rb
class AddStyleToSites < ActiveRecord::Migration[6.0]
def change
change_table :maglev_sites do |t|
t.jsonb :style, default: []
end
end
end