mastodon/db/migrate/20190801212756_add_thread_t...

6 lines
183 B
Ruby

class AddThreadToCustomFilters < ActiveRecord::Migration[5.2]
def change
safety_assured { add_column :custom_filters, :thread, :boolean, null: false, default: false }
end
end