sachin
add dummy tables
6951757
raw
history blame
376 Bytes
from django.db import models
class UserMaternityApp(models.Model):
id = models.BigAutoField(primary_key=True)
appointment_day = models.DateField()
appointment_time = models.TimeField()
patient_name = models.CharField(max_length=255)
status = models.CharField(max_length=255)
observations = models.TextField()
pregnancy_week = models.IntegerField()