about summary refs log tree commit diff
path: root/db/migrate/20200817003653_status_mute_account_id_bigint.rb
blob: e46d17845098a86de94502e8dc6b50d20d109bfc (plain) (blame)
1
2
3
4
5
6
7
class StatusMuteAccountIdBigint < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      change_column :status_mutes, :account_id, :bigint, null: false
    end
  end
end