6 lines
158 B
Ruby
6 lines
158 B
Ruby
class AddJsonAttributesToFaPosts < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :domain_fa_posts, :json_attributes, :jsonb, default: {}
|
|
end
|
|
end
|