polyglot/db/migrate/20180829105638_add_first_name_to_users.rb
2018-08-29 14:53:39 +01:00

8 lines
206 B
Ruby

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