20160223162837_add_metadata_to_statuses.rb 239 B

12345678
  1. # frozen_string_literal: true
  2. class AddMetadataToStatuses < ActiveRecord::Migration[4.2]
  3. def change
  4. add_column :statuses, :in_reply_to_id, :integer, null: true
  5. add_column :statuses, :reblog_of_id, :integer, null: true
  6. end
  7. end