something / fir /models.py
Jellymcleaks's picture
Upload 32 files
5c037e2 verified
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)