6 lines
183 B
Python
6 lines
183 B
Python
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) |