Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class AddColumnsToUsers < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :users, :name, :string
  4. add_column :users, :access_token, :string
  5. add_column :users, :expires_at, :datetime
  6. add_column :users, :refresh_token, :string
  7. end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement