react-code-dataset / airbnb_clone /db /migrate /20190705045615_add_column_to_users.rb
Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
151 Bytes
class AddColumnToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :fname, :string
add_column :users, :bio, :text
end
end