sasalatart/on-this-day-sinatra

View on GitHub
server/lib/models/keyword.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
#
# Table name: keywords
#
#  id         :integer          not null, primary key
#  episode_id :integer
#  title      :string
#  href       :string
#

class Keyword < ActiveRecord::Base
  belongs_to :episode

  validates_presence_of :title, :href
end