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

  • Home
  • SEARCH
  • 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 8534639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:14:32+00:00 2026-06-11T10:14:32+00:00

I wrote the following model in Django, and wanted to define a foreign key

  • 0

I wrote the following model in Django, and wanted to define a foreign key to a class which is declared below the first class. Eclipse is showing an error. How to do it ?

class address_type(models.Model):
 address_type_desc = models.CharField(max_length=100)


class customer_address(models.Model):
 address_type_code = models.ForeignKey(address_type, related_name='type_of_address')
  • 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-11T10:14:33+00:00Added an answer on June 11, 2026 at 10:14 am

    You don’t actually have an error, but you can use quotes:

    class AddressType(models.Model):
     address_type_desc = models.CharField(max_length=100)
    
    
    class CustomerAddress(models.Model):
     address_type_code = models.ForeignKey('AddressType', related_name='type_of_address')
    

    I have also edited your class names to conform to the norm in Python. You should read pep-8, the official style guide for Python.

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

Sidebar

Related Questions

Let's say I have the following Django models: class A(models.Model): keywords = models.ManyToManyField(Keyword) class
I have the following model in Django: class Product(models.Model): CONDITION_CHOICES = ( ('N', 'New'),
i wrote following code to create a linkbutton programmatically, but its showing like lable
The scenario Suppose I have the following two model classes: public class ProductColor {
I have trouble writing a django data model which can link multiple objects of
In Django, I have the following models.py class Product(RandomPrimaryIdModel): feature1 = models.CharField(max_length=20, blank=True, null=True)
Referring to django-autofixture documentation , I wrote the following code (edited for terseness): def
I've got tables like the following (Django model definition, with a postgres database underlying
I have the following models: class Post(models.Model): message = models.TextField() (etc.) class UserProfile(models.Model): user
Hi Stackoverflow people, in my current project, I have the following model structure: class

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.