portlandcodeschool/humanitywar-rails

View on GitHub
app/models/entries_white_card.rb

Summary

Maintainability
A
0 mins
Test Coverage
class EntriesWhiteCard < ActiveRecord::Base
  belongs_to :white_card
  belongs_to :entry
  attr_accessible :weight, :white_card_id

  default_scope order(:weight)
end