mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 00:46:03 +01:00
7 lines
273 B
Ruby
7 lines
273 B
Ruby
class AddFieldsToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :website, :string, default: '', null: false
|
|
add_column :users, :location, :string, default: '', null: false
|
|
add_column :users, :bio, :text, default: '', null: false
|
|
end
|
|
end
|