Files
Mastodon/db/migrate/20220202200743_add_trendable_to_accounts.rb
2023-07-12 09:47:08 +02:00

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