File size: 151 Bytes
f5071ca
 
 
 
 
 
1
2
3
4
5
6
7
class AddColumnToUsers < ActiveRecord::Migration[5.2]
  def change
    add_column :users, :fname, :string
    add_column :users, :bio, :text
  end
end