mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-30 00:59:13 +00:00
8 lines
206 B
Ruby
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
|