~cytrogen/masto-fe

ref: 67055b034300393bd9a345bc057e86baa848ae35 masto-fe/db/migrate/20220202200743_add_trendable_to_accounts.rb -rw-r--r-- 238 bytes
67055b03 — Claire Fix import order inconsistencies (#2289) 2 years ago
                                                                                
1
2
3
4
5
6
7
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