9 lines
229 B
Python
9 lines
229 B
Python
from django.db import models
|
|
from . import Label
|
|
|
|
|
|
class Error(models.Model):
|
|
label = models.ForeignKey(Label, on_delete=models.CASCADE, related_name='errors')
|
|
error = models.TextField()
|
|
time = models.DateTimeField()
|