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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:22:19+00:00 2026-05-27T02:22:19+00:00

is there a link or tutorial on how to inherit an objects in django?

  • 0

is there a link or tutorial on how to inherit an objects in django? let us say that i have a vehicle as a parent and a car and a truck for it’s child.

if it is possible, is it done in the models.py?
and how is it work?

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-27T02:22:20+00:00Added an answer on May 27, 2026 at 2:22 am

    Exactly the same as python inheritence

    class Vehicle(Model):
        name = models.TextField()
    
    class Car(Vehicle):
        passengers = PositiveIntegerField()
    
    class Truck(Vehicle):
        tonnage = FloatField()
    
    >>> Car.objects.create(name='Beetle', passengers = 5)
    <Car: name="Beetle",passengers=5>
    >>> Truck.objects.create(name='Mack', tonnage=4.5)
    <Truck: name="Mack,tonnage=4.5>
    >>> Vehicle.objects.all()
    [<Vehicle: name="Beetle">,<Vehicle: name="Mack>]
    >>> v = Vehicle.objects.get(name='Beetle')
    >>> (bool(v.car), bool(v.truck))
    (True, False)
    >>> v.car
    <Car: name="Beetle",passengers=5>
    >>> v.truck
    None
    

    https://docs.djangoproject.com/en/dev/topics/db/models/#model-inheritance

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

Sidebar

Related Questions

In my application I have some link buttons there but when I right click
In this asp.net page, there is a link that leads to another page in
Is there a way to link to another View that displays search results without
Is there any way to link batch script (.bat files) so that they run
I'm trying to find a good XCode 4 tutorial out there that does the
I have studied Magento Template basic tutorial. There is a quesion confused me. Look
There is a link at the bottom. Pretty much what happens, is when the
There's a #pragma command to link in a library from the source file rather
Is there a way to link an existing .exe file with other C++ source
There is already a similar question( link ).The thing is I don't understand what

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.