Patstāvīgais darbs 18.11.2021
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

8 lines
191 B

from django.db import models
class Visit(models.Model):
visitor = models.CharField(max_length=100)
reason = models.CharField(max_length=140)
date_time = models.DateTimeField()