1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/db/migrate/20240430111641_add_active_to_users.rb
Josh Brown 19ee773d9b
Add ability to delete Maybe account (#698)
* Build out user deactivation and purging workflows

* Add i18n translations for user deletion

* Add tests for user deletion

* Fix lint issue
2024-04-30 11:40:31 -04:00

5 lines
146 B
Ruby

class AddActiveToUsers < ActiveRecord::Migration[7.2]
def change
add_column :users, :active, :boolean, default: true, null: false
end
end