~cytrogen/masto-fe

ref: 9b2bc3d1de301c686208b43a8efef5bc808f8e4e masto-fe/db/migrate/20220202200743_add_trendable_to_accounts.rb -rw-r--r-- 269 bytes
9b2bc3d1 — Eugen Rochko Add recent searches in web UI (#26834) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddTrendableToAccounts < ActiveRecord::Migration[6.1]
  def change
    add_column :accounts, :trendable, :boolean
    add_column :accounts, :reviewed_at, :datetime
    add_column :accounts, :requested_review_at, :datetime
  end
end