bizcochito.onion/webpage/models.py

8 lines
293 B
Python
Raw Normal View History

from django.db import models
# Create your models here.
2023-06-21 11:30:08 +00:00
class Booksigner(models.Model):
name = models.CharField(max_length=50)
website = models.CharField(blank=True, max_length=200)
email = models.EmailField(blank=True, )
2023-07-27 08:36:24 +00:00
comment = models.CharField(blank=True, max_length=500)