Faqs über DB hinzufügen!

This commit is contained in:
ben8
2025-06-01 19:34:21 +02:00
parent 3bfca331f2
commit aea07295d8
7 changed files with 81 additions and 117 deletions

View File

@@ -1,3 +1,6 @@
from django.db import models
# Create your models here.
class QivipFaq(models.Model):
question = models.TextField(max_length=200)
answer = models.TextField(max_length=1000)