mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:23:38 +08:00
32 lines
852 B
Ruby
32 lines
852 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
|
|
#
|
|
# 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)
|
|
#
|