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