mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8 lines
238 B
Ruby
8 lines
238 B
Ruby
|
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
|