zachinglis/crummy

View on GitHub
example/app/models/category.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Category < ActiveRecord::Base
  belongs_to :category
  
  has_many :categories
  has_many :posts
end