20220202200743_add_trendable_to_accounts.rb 331 B

12345678910111213
  1. # frozen_string_literal: true
  2. class AddTrendableToAccounts < ActiveRecord::Migration[6.1]
  3. def change
  4. safety_assured do
  5. change_table(:accounts, bulk: true) do |t|
  6. t.column :trendable, :boolean
  7. t.column :reviewed_at, :datetime
  8. t.column :requested_review_at, :datetime
  9. end
  10. end
  11. end
  12. end