Files
adamantium/db/migrate/20230129040028_add_syndication_sources_to_posts.rb

10 lines
169 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :posts do
add_column :syndication_sources, :json, default: "{}"
end
end
end