about summary refs log tree commit diff
path: root/db/migrate/20220202200743_add_trendable_to_accounts.rb
blob: 414df5108d9241408a5419f128ac228ea7589ca1 (plain) (blame)
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