Repository URL to install this package:
|
Version:
0.5.1 ▾
|
module Neoteric
module Events
module Categorization
module ClassMethods
def relate
belongs_to :event
belongs_to :category
end
end
def self.included(base)
base.table_name = 'categorizations'
base.extend(ClassMethods).relate
end
end
end
end