diaspora/app/models/poll.rb
Jannik Streek dfbe17d046 Poll input fields and data model now available
question field of poll now in db

fixed merge issues
2014-03-31 18:14:06 +02:00

7 lines
193 B
Ruby

class Poll < ActiveRecord::Base
attr_accessible :question
belongs_to :status_message
belongs_to :author, :class_name => :person, :foreign_key => :author_id
#has_many :poll_answers
end