5 lines
155 B
Ruby
5 lines
155 B
Ruby
class AddCustomAttributesToAccount < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :accounts, :custom_attributes, :jsonb, default: {}
|
|
end
|
|
end
|