models.py 532 B

12345678910111213141516171819202122232425262728
  1. from django.db import models
  2. from iepy.data.models import *
  3. # Create your models here.
  4. CHAR_LENGTH = 256
  5. class BaseModel(models.Model):
  6. class Meta:
  7. abstract = True
  8. app_label = "brat"
  9. class BratAnnotation(BaseModel):
  10. document_id = models.CharField(max_length=CHAR_LENGTH,db_index=True)
  11. value = models.CharField(max_length=CHAR_LENGTH*3)
  12. class LabeledBratAnnotation(BaseModel):
  13. document_id = models.CharField(max_length=CHAR_LENGTH)
  14. value = models.CharField(max_length=CHAR_LENGTH*3)