Class: Ronin::DB::OrganizationEmailAddress
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ronin::DB::OrganizationEmailAddress
- Includes:
- Model
- Defined in:
- lib/ronin/db/organization_email_address.rb
Overview
Represents an email address associated with an Organization.
Instance Attribute Summary collapse
-
#created_at ⇒ Time
readonly
Tracks when the organization email address was first created.
-
#email_address ⇒ EmailAddress
The email address associated with the organization.
-
#id ⇒ Integer
Primary key of the member.
-
#organization ⇒ Organization
The organization.
Method Summary
Methods included from Model
Instance Attribute Details
#created_at ⇒ Time (readonly)
Tracks when the organization email address was first created.
59 |
# File 'lib/ronin/db/organization_email_address.rb', line 59 attribute :created_at, :datetime |
#email_address ⇒ EmailAddress
The email address associated with the organization.
52 |
# File 'lib/ronin/db/organization_email_address.rb', line 52 belongs_to :email_address |
#id ⇒ Integer
Primary key of the member.
40 |
# File 'lib/ronin/db/organization_email_address.rb', line 40 attribute :id, :integer |
#organization ⇒ Organization
The organization.
46 |
# File 'lib/ronin/db/organization_email_address.rb', line 46 belongs_to :organization |