about summary refs log tree commit diff
path: root/db/migrate/20200317021758_add_expires_at_to_mutes.rb
blob: eaae8319d7c11080081c20c5bc5bdd399186b6b0 (plain) (blame)
1
2
3
4
5
class AddExpiresAtToMutes < ActiveRecord::Migration[5.2]
  def change
    add_column :mutes, :expires_at, :datetime
  end
end