diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-05 22:59:30 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-05 22:59:30 +0100 |
commit | 39cc9fde8a2e34da0639d83688d4d6d6d6240382 (patch) | |
tree | 2f41f57b6e21dacbb6dd67b8db73a5fac4a08493 /db/migrate/20161205214545_add_suspended_to_accounts.rb | |
parent | 64d109dc0e39574d4ed45f2443ee132dfb761033 (diff) |
Add account suspension
Diffstat (limited to 'db/migrate/20161205214545_add_suspended_to_accounts.rb')
-rw-r--r-- | db/migrate/20161205214545_add_suspended_to_accounts.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20161205214545_add_suspended_to_accounts.rb b/db/migrate/20161205214545_add_suspended_to_accounts.rb new file mode 100644 index 000000000..0d7e2beac --- /dev/null +++ b/db/migrate/20161205214545_add_suspended_to_accounts.rb @@ -0,0 +1,5 @@ +class AddSuspendedToAccounts < ActiveRecord::Migration[5.0] + def change + add_column :accounts, :suspended, :boolean, null: false, default: false + end +end |