about summary refs log tree commit diff
path: root/db/migrate/20220202200926_add_trendable_to_statuses.rb
blob: 7f38c8ca71fe6038355ca6e91e65139f9a54f381 (plain) (blame)
1
2
3
4
5
class AddTrendableToStatuses < ActiveRecord::Migration[6.1]
  def change
    add_column :statuses, :trendable, :boolean
  end
end