20170409170753_add_last_webfingered_at_to_accounts.rb 180 B

1234567
  1. # frozen_string_literal: true
  2. class AddLastWebfingeredAtToAccounts < ActiveRecord::Migration[5.0]
  3. def change
  4. add_column :accounts, :last_webfingered_at, :datetime
  5. end
  6. end