6 lines
173 B
Ruby
Executable File
6 lines
173 B
Ruby
Executable File
class AddInternalAttributesToAccounts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :accounts, :internal_attributes, :jsonb, null: false, default: {}
|
|
end
|
|
end
|