mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
19 lines
403 B
Ruby
19 lines
403 B
Ruby
class CreateUserProfile < ActiveRecord::Migration
|
|
def change
|
|
create_table :user_profiles do |t|
|
|
t.integer "user_id"
|
|
t.string "first_name"
|
|
t.string "last_name"
|
|
t.string "addrStreet1"
|
|
t.string "addrStreet2"
|
|
t.string "addrCity"
|
|
t.string "addrState"
|
|
t.string "addrZip"
|
|
t.string "phone"
|
|
t.string "email"
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
end
|