ZeusWPI/gamification

View on GitHub
app/models/git_identity.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
#
# Table name: git_identities
#
#  id         :integer          not null, primary key
#  name       :string(255)      not null
#  email      :string(255)      not null
#  coder_id   :integer
#  created_at :datetime
#  updated_at :datetime
#

class GitIdentity < ActiveRecord::Base
  belongs_to :coder
end