20190226003449_add_poll_id_to_statuses.rb 155 B

1234567
  1. # frozen_string_literal: true
  2. class AddPollIdToStatuses < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :statuses, :poll_id, :bigint
  5. end
  6. end