1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00
Maybe/db/migrate/20240306193345_add_is_active_to_account.rb
Zach Gollwitzer ad7136cb63
Add accounts management list (#522)
* Add accounts management

* Normalize i18n file

* Get turbo streams working

* Ignore disabled accounts in calculations

* Add empty state
2024-03-07 10:55:51 -05:00

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