thanks, .. it works for me.. but is there any other way to do these ??. as PatientVaccineStatus already connected to Patient model, and Vaccine connected to PatientVaccineStatus model. Can't we merged all the tables of descendants to their parent model in this hierarchy fashion without linking each descendants to its.. super parent??
On Tuesday, June 1, 2021 at 1:31:43 AM UTC-7 abubak...@gmail.com wrote: > class Vaccine(models.Model) > vaccine = models.ForeignKey(PatientVaccineStatus, > related_name="vaccine_status") > patient = models.ForeignKey(Patient, related_name="patient") # new > line > apply this line and your patient model will be linked with Vaccine model > > On Tue, Jun 1, 2021 at 11:06 AM Ayush Bisht <bisht.a...@gmail.com> wrote: > >> class Patient(models.Model): >> patient_id = models.CharField(max_length=60) >> >> >> class PatientVaccineStatus(models.Model): >> patient = models.ForeignKey(Patient, >> related_name="patient_vaccine_status") >> >> class Vaccine(models.Model) >> vaccine = models.ForeignKey(PatientVaccineStatus, >> related_name="vaccine_status") >> >> .................................................................. >> >> Is there any way to merged all the tables in a single table of patient. >> >> I successfully merge, PatientVaccineStatus table with Patient table, but >> Vaccine's table is not merging with the Patient. >> >> how can this hierarchy be merged in a single table. >> >> -- >> 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 django-users...@googlegroups.com. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/57aac480-cb53-4fbe-a3bd-8766cd7a5b82n%40googlegroups.com >> >> <https://groups.google.com/d/msgid/django-users/57aac480-cb53-4fbe-a3bd-8766cd7a5b82n%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- 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 django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1d1dfc11-b044-4474-9f62-2b25b9c5f9d9n%40googlegroups.com.