1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-04 06:13:18 +00:00
mastodon/db/migrate/20200317021758_add_expires_at_to_mutes.rb

8 lines
157 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddExpiresAtToMutes < ActiveRecord::Migration[5.2]
def change
add_column :mutes, :expires_at, :datetime
end
end