bizcochito.onion/webpage/models.py

9 lines
339 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, )
comment = models.CharField(blank=True, max_length=500)
2023-07-26 10:30:24 +00:00
hosting = models.CharField(max_length=10)