Source code for tcms.core.models.abstract

from django.db import models


[docs] class Property(models.Model): name = models.CharField(max_length=255) value = models.CharField(max_length=255)
[docs] class Meta: abstract = True
def __str__(self): return f"{self.name}: {self.value}"