20200317021758_add_expires_at_to_mutes.rb 157 B

1234567
  1. # frozen_string_literal: true
  2. class AddExpiresAtToMutes < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :mutes, :expires_at, :datetime
  5. end
  6. end