Replace IRB with Pry (in your Gemfile) and Byebug with pry-byebug.
gem 'pry-rails', group: [:development, :test]
gem 'pry-byebug', group: [:development, :test]| class CreateIdentities < ActiveRecord::Migration | |
| def change | |
| create_table :identities do |t| | |
| t.string :provider | |
| t.string :uid | |
| t.integer :user_id | |
| t.timestamps null: false | |
| end |