https://stackoverflow.com/questions/68269165/why-django-is-not-detecting-my-table-column
Try reading this article, it may help you. On Saturday, August 19, 2023 at 3:05:57 AM UTC+8 meenu loranz wrote: > from django.contrib.auth.models import User > from django.db import models > from django.urls import reverse > # Create your models here. > > class bank(models.Model): > name = models.CharField(max_length=255) > DOB = models.DateField() > age = models.IntegerField() > gender = models.CharField(max_length=10) > phone_no = models.CharField(max_length=10) > mail_id = models.EmailField(max_length=25) > address = models.CharField(max_length=255) > district = models.CharField(max_length=100) > branch = models.CharField(max_length=100) > account_type = models.CharField(max_length=100) > # materials_provided = models.CharField(max_length=100) > > > def __str__(self): > return self.name > > This is my model.py page. And i can see this table and all fields in my > database. But while running show me the operational error that no column > named DOB. How can i fix this? > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1aaf9e41-e11c-43bb-bda9-17b609814059n%40googlegroups.com.

