Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8860423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:15:49+00:00 2026-06-14T15:15:49+00:00

I have a polymorphic table called Votes, where has votes from Answers and Questions.

  • 0

I have a polymorphic table called “Votes”, where has votes from Answers and Questions.

Votes

user_id     voteable_id    voteable_type      value

   1             2            Answer            1
   2             2            Answer            1

In this case, the answer with id = 2 has two votes up.

The question is: How to index this table?

First approach:

add_index :votes, [:voteable_id, :voteable_type]

This will not work because duplicate key value will violates unique constraint

Second approach:

 add_index :votes, :voteable_id, 
 add_index :votes, :voteable_type

This one I guess will not have much performance because of the composite queries for id and type at the same time.

Third approach:

add_index :votes, [:user_id, :voteable_id, :voteable_type]

Is this last one a good one? Are three columns to be indexed too much?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T15:15:50+00:00Added an answer on June 14, 2026 at 3:15 pm

    your first approach is the right one

    add_index :votes, [:voteable_id, :voteable_type]
    

    as long as you don’t add :unique => true it will not be unique. And you shouldn’t make it unique, as this would result in only one vote per votable would be possible. As Tashos states in the comments.

    The third approach would work too, and here you can use a unique constraint, so every user can only vote once per votable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table Foo that has a polymorphic belongs_to association called bar .
I have content management system application that uses a polymorphic tree table as the
I have a double polymorphic associations, basically i'm going to put in relation Questions
I have this pimpl design where the implementation classes are polymorphic but the interfaces
I have a Post model that has a polymorphic association with a Vote model:
#Vote Model belongs_to :voteable, :polymorphic => true belongs_to :voter, :polymorphic => true #votes table
I have an SQLAlchemy scheme that looks roughly like this: participation = db.Table('participation', db.Column('artist_id',
Let's say I have a legacy MySQL table called server with fields serverid:integer and
I have a relationship table in a rails application called edit_privileges , in which
Basically, I have this model, where I mapped in a single table a BaseNode

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.