10 lines
171 B
Ruby
10 lines
171 B
Ruby
class Plume < ActiveRecord::Base
|
|
belongs_to :image_file
|
|
|
|
has_many :plume_cats
|
|
|
|
has_many :plume_articles, :through => :plume_cats
|
|
|
|
has_many :plume_events
|
|
end
|