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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:45:46+00:00 2026-05-26T00:45:46+00:00

I need to model a postal address that can have multiline street address, the

  • 0

I need to model a postal address that can have multiline street address, the city, the state (province), and the postal code. the country is omitted.

I need to preserve line breaks in the street addresses but still be able to search the addresses.

I see two ways to do it:

class Address(models.Model):
    street = models.ForeignKey('StreetAddress')
    city = models.TextField()
    province = models.TextField()
    code = models.TextField()<br>
class StreetAddress(models.Model):
    line_number = models.IntegerField()
    text = models.TextField()

or this one which stores the street address in a single text field but uses special separator characters to encode line breaks:

class Address(models.Model):
    street = models.TextField()
    city = models.TextField()
    province = models.TextField()
    code = models.TextField()

what is the best way to do it in terms of code readability and efficiency (or their balance)?

  • 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-26T00:45:46+00:00Added an answer on May 26, 2026 at 12:45 am

    Unless the majority of your addresses have multi-line street parts (and have many lines), I’d go for the latter, storing it all in a single field, and not bothering with an additional model. If most of your multi-line addresses are only two lines, consider creating a street and street2 field in your Address model (you could choose more descriptive names for these two “street” fields). The first would store the first street line, and the second field would store all additional lines (separated by newlines). I would think when searching addresses, you’d most often search on the address line that contains the street number, so maybe in your program logic you’d ensure that the street number line was always stored in the first “street” field, which you could then add an index on in your database.

    On the other hand, if most of your addresses will have multi-line street parts, and have more than two lines, then it makes sense to create that second model.

    If you don’t know in advance, and don’t mind potentially “migrating” in the future, go for the simpler model. Otherwise, go for your two-model design.

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

Sidebar

Related Questions

In an ASP.NET MVC3 app I have a model that represents a user address
I have a need for a model(?) on my app which basically contains a
I need to figure out a way to set ValidateRequest at model...I understand that
Both my Rails model and controller code need to write files to the file
I have a prototype model where I need to include the following extension methods
I need a model for finding all of the regular expressions that would match
i need to model the following scenario, but I can't get it working with
I need to model organizational hierarchy structure in my entities. An organization can be
I'm using Rails 3 to create a project that will need a model called
I am developing a portal with Django. I need that my users can enter

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.