mastodon/db/migrate/20220202200926_add_trendabl...

8 lines
209 B
Ruby

# frozen_string_literal: true
class AddTrendableToStatuses < ActiveRecord::Migration[6.1]
def change
add_column :statuses, :trendable, :boolean # rubocop:disable Rails/ThreeStateBooleanColumn
end
end