Add account suspension
This commit is contained in:
parent
64d109dc0e
commit
39cc9fde8a
7 changed files with 24 additions and 10 deletions
5
db/migrate/20161205214545_add_suspended_to_accounts.rb
Normal file
5
db/migrate/20161205214545_add_suspended_to_accounts.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
add_column :accounts, :suspended, :boolean, null: false, default: false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue