mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-05-11 00:33:11 +00:00
11 lines
239 B
Python
11 lines
239 B
Python
from django.db import models
|
|
|
|
|
|
class Document(models.Model):
|
|
type_name = models.CharField(max_length=50)
|
|
number = models.IntegerField()
|
|
|
|
date = models.DateField()
|
|
|
|
summary = models.TextField()
|
|
text = models.TextField()
|