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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T04:51:50+00:00 2026-05-20T04:51:50+00:00

ok, so my database has a headers/lines type structure, where there is header models

  • 0

ok, so my database has a headers/lines type structure, where there is header models which have many lines models. This structure is in place on many models. I want to keep track of which header models are related to which lines models.

Originally I simply had an attribute on the header model pointing to the related models, but would like this to be stored in the database.

So I have used djangos GenericForeignKey stuff before, but only when I wanted to have foreign key relationships with several model records, not just the model themselves.

With the GenericForeignKey you have three things needed:

content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')

In my case, I dont need the object_id but I dont think that I can leave it out…

So after all that I guess my question is if using GenericForeignKey is the best way of setting up this model, or are there any other solutions.

Another thought was just to use the model names…

hopefully that all makes sense. 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-05-20T04:51:50+00:00Added an answer on May 20, 2026 at 4:51 am

    Since you just want it to point to the models themselves, not individual records, all you need is

    my_model = models.ForeignKey(ContentType)
    

    Then, if you want to figure out which model a header is associated with, just do

    >>> my_header.my_model
    <ContentType: Model Name>
    

    If you want to point to specific records, you need the other two fields. The object_id field holds the pk of the record you’re pointing too. And the content_object field is NOT stored in the database, but rather is just a nice wrapper that (using the object_id and content_type fields) returns the model object, rather than you having to look up the record manually based on the content type and the id.

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

Sidebar

Related Questions

I have a global header and footer that has a Database connection and a
I have several large (30+ million lines) text databases which I am cleaning up
I have a gridview that imports data from a remote database, this is working
I have to write an ASP page that has connection to 1 database and
I have a database stored in memory of different files headers. I would like
I have a database table, let's call it headers with an id and a
Database has tables Photos and PhotoAlbums. I need a query that will select all
My database has a parent table with an auto-incrementing primary key identity 'ID', and
My database has 7 tables: one is the parent (feeds) and the other 3
My database has a table with thousands of records. The primary key is an

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.