polyglot/db/migrate/20180829105638_add_first_na...

8 lines
206 B
Ruby
Raw Normal View History

class AddFirstNameToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :first_name, :string
add_column :users, :last_name, :string
add_column :users, :photo, :string
end
end