8 lines
113 B
Ruby
8 lines
113 B
Ruby
class Taxon < ActiveRecord::Base
|
|
|
|
has_many :cat_taxons
|
|
|
|
has_many :t_cats, :through => :cat_taxons
|
|
|
|
end
|