2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-02-25 10:34:14 +11:00
|
|
|
class AddTrendableToAccounts < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
2023-11-07 03:15:48 +11:00
|
|
|
safety_assured do
|
|
|
|
change_table(:accounts, bulk: true) do |t|
|
|
|
|
t.column :trendable, :boolean
|
|
|
|
t.column :reviewed_at, :datetime
|
|
|
|
t.column :requested_review_at, :datetime
|
|
|
|
end
|
|
|
|
end
|
2022-02-25 10:34:14 +11:00
|
|
|
end
|
|
|
|
end
|