mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
* Add accounts management * Normalize i18n file * Get turbo streams working * Ignore disabled accounts in calculations * Add empty state
5 lines
156 B
Ruby
5 lines
156 B
Ruby
class AddIsActiveToAccount < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :accounts, :is_active, :boolean, default: true, null: false
|
|
end
|
|
end
|