7 lines
135 B
Ruby
7 lines
135 B
Ruby
|
class LocationsOrganization < ActiveRecord::Base
|
||
|
belongs_to :location
|
||
|
belongs_to :organization
|
||
|
|
||
|
self.primary_key = :location_id
|
||
|
end
|