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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:50:40+00:00 2026-05-14T01:50:40+00:00

So I’m creating a plugin for Ruby on Rails to make implemented addresses including

  • 0

So I’m creating a plugin for Ruby on Rails to make implemented addresses including country, state, city, and zip_code for countries that can follow that paradigm a lot easier but that’s beside the point expect for how the address model is associated.

So starting with my address model.

class Address < ActiveRecord::Base
    has_one :country
    has_one :state
    has_one :city
    has_one :zip_code
end

What’s the difference between saying belongs_to and has_one

Seems to be the same thing because both only require one model to declare ownership and foreign_key

And it also seems that both are logical to say.

an address belongs to an account and an account has one address

Is this only semantics or is there are real difference

  • 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-14T01:50:40+00:00Added an answer on May 14, 2026 at 1:50 am

    From ActiveRecord association’s perspective, any model with belongs_to declaration has the foreign key and any model with has_one declaration has the primary key.

    If we go by the current state of your model then you have to ensure tables such as countries, sates, cities, and zip_codes have a column called address_id. Presumably that’s not what you want.

    So you have to change your Address model as follows:

    class Address < ActiveRecord::Base
      belongs_to :country
      belongs_to :state
      belongs_to :city
      belongs_to :zip_code
    end
    

    Which also means you have to ensure addresses table has the following columns: country_id, state_id, city_id and zip_code_id ( I am assuming this is your current table structure).

    Edit [I extended my answer to address the questions raised in the comments section.]
    In your example you should use has_many association rather has_one association.

    class Country
      has_many   :addresses
    end
    
    class State
      has_many   :addresses
    end
    
    class City
      has_many   :addresses
    end
    
    class ZipCode
      has_many   :addresses
    end
    

    You can make calls such as:

    country.addresses
    state.addresses
    city.addresses
    zip_code.addresses
    

    I have used has_one association in following scenarios.

    1) User with a profile

     User has one Profile
     Profile belongs to User
    

    2) Merchant account with a store

     Merchant has one Store     
     Store belongs to Merchant
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 386k
  • Answers 386k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Looks like your ProfileViewController instance is getting deallocated somehow. Make… May 14, 2026 at 11:47 pm
  • Editorial Team
    Editorial Team added an answer The problem seems to be the security. Instead of None… May 14, 2026 at 11:47 pm
  • Editorial Team
    Editorial Team added an answer This should make all the cells 65px high, and make… May 14, 2026 at 11:47 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.