1
0
mirror of https://github.com/glitch-soc/mastodon synced 2024-03-09 07:35:42 +00:00
glitch-social/db/migrate/20161027172456_add_silenced_to_accounts.rb

6 lines
157 B
Ruby
Raw Normal View History

2016-10-27 19:33:04 +02:00
class AddSilencedToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :silenced, :boolean, null: false, default: false
end
end