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