toshogakari/eLib

View on GitHub
app/models/tag.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Tag < ActiveRecord::Base
  has_many :tag_has_books
  has_many :books, through: :tag_has_books
end