clairelee/directable

View on GitHub
app/models/notes_instrument.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NotesInstrument < ActiveRecord::Base
    belongs_to :note
    belongs_to :instrument
    validates :note_id, :instrument_id, presence: true
end