justCxx/flashcards

View on GitHub
app/models/deck.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Deck < ActiveRecord::Base
  belongs_to :user
  has_many :cards, dependent: :destroy

  validates :title, presence: true
  validates_associated :user
end