To develop a Django application to store and retrieve data from a Car Inventory Database using Object Relational Mapping(ORM).
Clone the problem from GitHub
Create a new app in Django project
Enter the code for admin.py and models.py
Execute Django admin and create details for 10 books
admin.py
from django.contrib import admin
from .models import Car_DB,Car_DBAdmin
admin.site.register (Car_DB,Car_DBAdmin)
models.py
from django.db import models
from django.contrib import admin
class Car_DB(models.Model):
Brand_Name = models.CharField(max_length=10)
Model_No = models.IntegerField(primary_key=True)
Customer_name = models.CharField(max_length=10)
Car_name=models.CharField(max_length=10)
Mfg_Date = models.DateField()
class Car_DBAdmin(admin.ModelAdmin):
list_display = ["Brand_Name","Model_No","Customer_name","Car_name","Mfg_Date"]
Thus the program for creating car inventory database database using ORM hass been executed successfully
-1.png)