(1054, "Unknown column 'boericke_joints.id' in 'field list'")
I added a primary Id key that's required by django but I keep getting the same error. I also did migrate command. Kindly help solve this issue. Thanks in advance.
models.py is as follows:
class BoerickeJoints(models.Model):id = models.IntegerField(primary_key=True)medicine = models.CharField(max_length=75, blank=True, null=True)section = models.CharField(max_length=100, blank=True, null=True)details = models.TextField(blank=True, null=True)class Meta:db_table = 'boericke_joints'