mirror of
https://github.com/funamitech/mastodon
synced 2024-11-25 15:46:44 +09:00
10 lines
269 B
Ruby
10 lines
269 B
Ruby
# 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
|