Create 'poll_question_answer_videos' table and model

This commit is contained in:
Angel Perez
2017-10-04 17:25:51 -04:00
parent f4774894e7
commit 32f3b643b0
4 changed files with 38 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
class Poll::Question::Answer < ActiveRecord::Base
belongs_to :question, class_name: 'Poll::Question', foreign_key: 'question_id'
has_many :videos, class_name: 'Poll::Question::Answer::Video'
validates :title, presence: true