Add "locked" flag to accounts, prevent blocked users from following, force-unfollow blocked users
This commit is contained in:
parent
f91b6fa9e1
commit
2d2154ba75
9 changed files with 27 additions and 3 deletions
5
db/migrate/20161222201034_add_locked_to_accounts.rb
Normal file
5
db/migrate/20161222201034_add_locked_to_accounts.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddLockedToAccounts < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
add_column :accounts, :locked, :boolean, null: false, default: false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue