mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-14 14:29:28 +00:00
8 lines
209 B
Ruby
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
|