about summary refs log tree commit diff
path: root/db/migrate/20171021191900_move_keyword_mutes_into_glitch_namespace.rb
blob: b6ea537c2c1178c60558ebeb7b5028681c27ccce (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class MoveKeywordMutesIntoGlitchNamespace < ActiveRecord::Migration[5.1]
  def change
    safety_assured do
      rename_table :keyword_mutes, :glitch_keyword_mutes
    end
  end
end