7 lines
161 B
Ruby
7 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddTrendableToStatuses < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :statuses, :trendable, :boolean
|
|
end
|
|
end
|