about summary refs log tree commit diff
path: root/db/migrate/20200719114344_add_timelines_only_to_mute.rb
blob: 20bbfcd5916b0704e66057d24e65c1792a7b4021 (plain) (blame)
1
2
3
4
5
6
7
class AddTimelinesOnlyToMute < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :mutes, :timelines_only, :boolean, default: false, null: false
    end
  end
end