discourse/plugins/poll/app/models/poll_vote.rb
Robert a535798659
FIX: Poll: ensure it is not possible to vote with all abstentions in Ranked Choice (#29601)
Make sure Cast Vote button is disabled when all abstain and remove any historic data that fails new zero rank vote validation
2024-11-26 20:16:22 +08:00

33 lines
909 B
Ruby

# frozen_string_literal: true
class PollVote < ActiveRecord::Base
belongs_to :poll
belongs_to :poll_option
belongs_to :user
end
# == Schema Information
#
# Table name: poll_votes
#
# poll_id :bigint
# poll_option_id :bigint
# user_id :bigint
# created_at :datetime not null
# updated_at :datetime not null
# rank :integer default(0), not null
#
# Indexes
#
# index_poll_votes_on_poll_id (poll_id)
# index_poll_votes_on_poll_id_and_poll_option_id_and_user_id (poll_id,poll_option_id,user_id) UNIQUE
# index_poll_votes_on_poll_option_id (poll_option_id)
# index_poll_votes_on_user_id (user_id)
#
# Foreign Keys
#
# fk_rails_... (poll_id => polls.id)
# fk_rails_... (poll_option_id => poll_options.id)
# fk_rails_... (user_id => users.id)
#