diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-22 21:34:19 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-22 21:34:19 +0100 |
commit | 2d2154ba75279186b064c887452b7d6ee70b8ba2 (patch) | |
tree | e27a84e2245184c899f2b347d63af16210973660 /db/migrate | |
parent | f91b6fa9e15029f23be7be3b796eca122e5b5588 (diff) |
Add "locked" flag to accounts, prevent blocked users from following, force-unfollow blocked users
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20161222201034_add_locked_to_accounts.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20161222201034_add_locked_to_accounts.rb b/db/migrate/20161222201034_add_locked_to_accounts.rb new file mode 100644 index 000000000..c246a90ce --- /dev/null +++ b/db/migrate/20161222201034_add_locked_to_accounts.rb @@ -0,0 +1,5 @@ +class AddLockedToAccounts < ActiveRecord::Migration[5.0] + def change + add_column :accounts, :locked, :boolean, null: false, default: false + end +end |