bsc-networks/workshift-website

View on GitHub
app/models/preference.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Preference < ActiveRecord::Base
  belongs_to :user
  belongs_to :category

  validates :rank, presence: true

  attr_accessible :rank, :user_id, :category_id
end