mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-27 07:13:44 +01: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
|