mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
495 B
17 lines
495 B
class UserProfile < ActiveRecord::Base
|
|
attr_accessible :user_id, :addrStreet1, :addrStreet2, :addrCity,
|
|
:addrState, :addrZip, :phone
|
|
|
|
belongs_to :user
|
|
belongs_to :bike
|
|
|
|
#validates :addrStreet1 , :presence => true
|
|
#validates :addrCity , :presence => true
|
|
#validates :addrState , :presence => true
|
|
#validates :addrZip , :presence => true
|
|
#validates :phone, :presence => true
|
|
|
|
def to_s
|
|
[addrStreet1, addrStreet2, addrCity, addrState, addrZip, phone].join(" - ")
|
|
end
|
|
end
|
|
|