logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20170507000211_add_conversation_id_to_statuses.rb (208B)


  1. class AddConversationIdToStatuses < ActiveRecord::Migration[5.0]
  2. def change
  3. add_column :statuses, :conversation_id, :bigint, null: true, default: nil
  4. add_index :statuses, :conversation_id
  5. end
  6. end