saruman_87

Untitled

May 17th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.26 KB | None | 0 0
  1. class AddEmailPasswordToUser < ActiveRecord::Migration[6.0]
  2.   def change
  3.     add_column :users, :email, :string
  4.     add_column :users, :password_hash, :string
  5.     add_column :users, :password_salt, :string
  6.     add_column :users, :avatar_url, :string
  7.   end
  8. end
Add Comment
Please, Sign In to add comment