Okechi Onyeje 7c6cf0f38d Create implemented Company
- Create route and view implemented with minimal info
- index implemented and shows number of registered companies
2017-01-20 02:40:43 -05:00

9 lines
306 B
Ruby

class User < ApplicationRecord
belongs_to :company
has_many :runs
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
end