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 6214891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:57:22+00:00 2026-05-24T06:57:22+00:00

I’m having trouble with a model not honoring the :foreign_key policy. Character model has

  • 0

I’m having trouble with a model not honoring the :foreign_key policy.

Character model has the following fields:
name:string
level:int
realm:string
realm_id:integer

class Character < ActiveRecord::Base
  belongs_to :realm

end

My Realms model looks like this:

class Realm < ActiveRecord::Base
  has_many :characters, :foreign_key => "realm_id"

end

However, it seems like it’s forcing the character model to use the :realm column as the foreign_key rather than :realm_id. I don’t have any clue as to why or how to fix it. Is there any other way to make it ignore the :realm field and go for the :realm_id without having to change the name of the column?

[Edit for clarity]

The character model does have a realm_id:integer field. I have tried not having the foreign_key but the results with both is identical.

ruby-1.9.2-p136 :012 > c = Character.new
=> #

ruby-1.9.2-p136 :013 > c.realm = “Sargeras”

ActiveRecord::AssociationTypeMismatch: Realm(#2154038240) expected, got String(#2151988680)

Despite even having the foreign_key, it just refuses to let go of the realm column.

[Edit 2]

The realm column will just take over due to the has_many and belongs_to association. There is no way so far to break this, so the solution is to either remove the column (the approach i will take), or rename it to something different.

  • 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-05-24T06:57:24+00:00Added an answer on May 24, 2026 at 6:57 am

    You should not need the :foreign_key part here at all, since you’re following the standard Rails naming convention, the realm_id column should be inferred from the model name.

    EDIT

    I see. I don’t think you can have a column and an association by the same name in one model. The easiest solution would probably be to rename the “realm” column to “realmname” or something like that.

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

Sidebar

Related Questions

No related questions found

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.