6
0

label_provider.py 391 B

1234567891011121314151617
  1. from django.db import models
  2. from pycs_api.models import base
  3. class LabelProvider(base.BaseModel):
  4. description = models.TextField()
  5. root_folder = models.CharField(max_length=255, unique=True)
  6. configuration_file = models.CharField(max_length=255, unique=True)
  7. class Meta:
  8. unique_together = [
  9. "root_folder",
  10. "configuration_file"
  11. ]