mastodon/db/migrate/20220202200926_add_trendable_to_statuses.rb
2024-12-11 14:25:48 +00:00

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