Files
sure/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

6 lines
156 B
Ruby

class AddIsActiveToAccount < ActiveRecord::Migration[7.2]
def change
add_column :accounts, :is_active, :boolean, default: true, null: false
end
end