nuitdelinfo_2021/error/models.py

9 lines
154 B
Python
Raw Permalink Normal View History

2021-12-02 21:57:32 +01:00
from django.db.models import Model, TextField
class ThomasPesquetQuotes(Model):
text = TextField()
2021-12-03 03:40:41 +01:00
def __str__(self):
return self.text