Class: Ronin::DB::OrganizationEmailAddress

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
Model
Defined in:
lib/ronin/db/organization_email_address.rb

Overview

Represents an email address associated with an Organization.

Since:

  • 0.2.0

Instance Attribute Summary collapse

Method Summary

Methods included from Model

included

Instance Attribute Details

#created_atTime (readonly)

Tracks when the organization email address was first created.

Returns:

  • (Time)


59
# File 'lib/ronin/db/organization_email_address.rb', line 59

attribute :created_at, :datetime

#email_addressEmailAddress

The email address associated with the organization.

Returns:



52
# File 'lib/ronin/db/organization_email_address.rb', line 52

belongs_to :email_address

#idInteger

Primary key of the member.

Returns:

  • (Integer)


40
# File 'lib/ronin/db/organization_email_address.rb', line 40

attribute :id, :integer

#organizationOrganization

The organization.

Returns:



46
# File 'lib/ronin/db/organization_email_address.rb', line 46

belongs_to :organization