mokevnin/rails-examples

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

Summary

Maintainability
A
0 mins
Test Coverage
class Category::Hub < ActiveRecord::Base
  belongs_to :category
  has_many :topics

  validates :name, presence: true
end