class Patient(models.Model): patient_id = models.CharField(max_length=60) # no need for adding patient id because django automatically creates ids patient_vaccine = models.ForeignKey(PatientVaccine, related_name="patient_vaccine") vaccine = models.ForeignKey(Vaccinet, related_name="vaccinet")
On Tue, Jun 1, 2021 at 1:30 PM DJANGO DEVELOPER <abubakarbr...@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.ayush2...@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+unsubscr...@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/CAKPY9pkQGHbMXJ0Lg7rb57ih6m-UQdHiTN%2BF-4Wp49M4Mw6T%2Bg%40mail.gmail.com.