discourse/app/models/category_group.rb

16 lines
372 B
Ruby
Raw Normal View History

2013-05-24 10:35:14 +08:00
# == Schema Information
#
# Table name: category_groups
#
# id :integer not null, primary key
# category_id :integer not null
# group_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
#
class CategoryGroup < ActiveRecord::Base
belongs_to :category
belongs_to :group
end