0
0
Fork 0

Adding public timeline silencing

This commit is contained in:
Eugen Rochko 2016-10-27 19:33:04 +02:00
parent e5565a7e4a
commit 909d0d5e88
4 changed files with 25 additions and 13 deletions

View file

@ -0,0 +1,5 @@
class AddSilencedToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :silenced, :boolean, null: false, default: false
end
end