Class: Ronin::DB::OrganizationPhoneNumber
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ronin::DB::OrganizationPhoneNumber
- Includes:
- Model
- Defined in:
- lib/ronin/db/organization_phone_number.rb
Overview
Represents a Organization's phone number.
Instance Attribute Summary collapse
-
#created_at ⇒ Time
Tracks when the organization phone number was first created.
-
#id ⇒ Integer
The primary key of the organization phone number.
-
#organization ⇒ Organization
The organization.
-
#phone_number ⇒ PhoneNumber
The phone number.
Method Summary
Methods included from Model
Instance Attribute Details
#created_at ⇒ Time
Tracks when the organization phone number was first created.
59 |
# File 'lib/ronin/db/organization_phone_number.rb', line 59 attribute :created_at, :datetime |
#id ⇒ Integer
The primary key of the organization phone number.
40 |
# File 'lib/ronin/db/organization_phone_number.rb', line 40 attribute :id, :integer |
#organization ⇒ Organization
The organization.
46 |
# File 'lib/ronin/db/organization_phone_number.rb', line 46 belongs_to :organization |
#phone_number ⇒ PhoneNumber
The phone number.
52 |
# File 'lib/ronin/db/organization_phone_number.rb', line 52 belongs_to :phone_number |