mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
4199062a9c
Added model annotations
26 lines
530 B
Ruby
26 lines
530 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: options
|
|
#
|
|
# id :integer not null, primary key
|
|
# option :string(255)
|
|
# poll_id :integer
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# votes :integer default(0), not null
|
|
#
|
|
|
|
class Option < ActiveRecord::Base
|
|
include Extra
|
|
|
|
attr_protected :id, :updated_at, :created_at, :votes
|
|
|
|
validates_length_of :option, :in => 1..30
|
|
|
|
has_many :real_votes, :class_name => "Vote", :as => :votable
|
|
belongs_to :poll
|
|
|
|
def to_s
|
|
self.option
|
|
end
|
|
end
|