1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-22 17:17:32 +00:00
mastodon/db/migrate/20170507000211_add_conversation_id_to_statuses.rb

9 lines
239 B
Ruby

# frozen_string_literal: true
class AddConversationIdToStatuses < ActiveRecord::Migration[5.0]
def change
add_column :statuses, :conversation_id, :bigint, null: true, default: nil
add_index :statuses, :conversation_id
end
end