You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
metu.life/db/migrate/20170322143850_change_prima...

15 lines
634 B

class ChangePrimaryKeyToBigintOnStatuses < ActiveRecord::Migration[5.0]
def change
change_column :statuses, :id, :bigint
change_column :statuses, :reblog_of_id, :bigint
change_column :statuses, :in_reply_to_id, :bigint
change_column :media_attachments, :status_id, :bigint
change_column :mentions, :status_id, :bigint
change_column :notifications, :activity_id, :bigint
change_column :preview_cards, :status_id, :bigint
change_column :reports, :status_ids, :bigint, array: true
change_column :statuses_tags, :status_id, :bigint
change_column :stream_entries, :activity_id, :bigint
end
end