Spaces:
No application file
No application file
| from django.db import models | |
| class FIRDetails(models.Model): | |
| book_no = models.CharField(max_length=50) | |
| form_no = models.CharField(max_length=50) | |
| police_station = models.CharField(max_length=100) | |
| district = models.CharField(max_length=100) | |
| date_hour_occurrence = models.CharField(max_length=50) | |
| date_hour_reported = models.CharField(max_length=50) | |
| informer_name = models.CharField(max_length=200) | |
| description_offense = models.TextField() | |
| place_occurrence = models.CharField(max_length=200) | |
| criminal_name = models.CharField(max_length=200) | |
| investigation_steps = models.TextField() | |
| dispatch_time = models.CharField(max_length=50) | |