7 lines
103 B
Ruby
7 lines
103 B
Ruby
class Community < ActiveRecord::Base
|
|
has_one :proposal
|
|
has_one :investment
|
|
has_many :topics
|
|
|
|
end
|