To develop a Django application to store and retrieve data from a database using Object Relational Mapping(ORM).
Create a migration file that contains code for the database schema of a model in myapp
Run Django admin
Run Django admin
mdoela.py
from django.db import models
from django.contrib import admin
class Employee(models.Model):
eid=models.CharField(max_length=20,help_text="Employee ID")
name=models.CharField(max_length=20)
salary=models.IntegerField()
age=models.IntegerField()
email=models.EmailField()
class EmployeeAdmin(admin.ModelAdmin):
list_display=("eid","name","salary","age","email")
admin.py
from django.contrib import admin
from.models import Employee,EmployeeAdmin
admin.site.register(Employee,EmployeeAdmin)
The program executed successfully

