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