about summary refs log tree commit diff
path: root/db/migrate/20171021191900_move_keyword_mutes_into_glitch_namespace.rb
blob: 269bb49d64880a9b2c35fd515936ae48530fcd91 (plain) (blame)
1
2
3
4
5
6
7
class MoveKeywordMutesIntoGlitchNamespace < ActiveRecord::Migration[5.1]
  def change
    safety_assured do
      rename_table :keyword_mutes, :glitch_keyword_mutes
    end
  end
end