Class: Ronin::DB::OrganizationHostName
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ronin::DB::OrganizationHostName
- Includes:
- Model
- Defined in:
- lib/ronin/db/organization_host_name.rb
Overview
Represents an association between an Organization and a HostName.
Instance Attribute Summary collapse
-
#created_at ⇒ Time
readonly
Tracks when the organization claimed ownership of the host name.
-
#host_name ⇒ HostName
The host name that the organization owns.
-
#id ⇒ Integer
Primary key of the organization.
-
#organization ⇒ Organization
The organization that owns the host name.
Method Summary
Methods included from Model
Instance Attribute Details
#created_at ⇒ Time (readonly)
Tracks when the organization claimed ownership of the host name.
58 |
# File 'lib/ronin/db/organization_host_name.rb', line 58 attribute :created_at, :datetime |
#host_name ⇒ HostName
The host name that the organization owns.
52 |
# File 'lib/ronin/db/organization_host_name.rb', line 52 belongs_to :host_name |
#id ⇒ Integer
Primary key of the organization
40 |
# File 'lib/ronin/db/organization_host_name.rb', line 40 attribute :id, :integer |
#organization ⇒ Organization
The organization that owns the host name.
46 |
# File 'lib/ronin/db/organization_host_name.rb', line 46 belongs_to :organization |