ashirahattia/cs169-pgm

View on GitHub
app/models/group.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Group < ActiveRecord::Base
    has_one :match, dependent: :destroy
    belongs_to :force_matched_project, class_name: "Project", inverse_of: :force_matched_group, foreign_key: "force_matched_project_id"
end