Files
rengine/targetApp/models.py
T
2020-05-09 16:52:50 +05:30

12 lines
311 B
Python

from django.db import models
from django.utils import timezone
# Create your models here.
class Domain(models.Model):
domain_name = models.CharField(max_length=300)
domain_description = models.TextField()
insert_date = models.DateTimeField()
def __str__(self):
return self.domain_name