monitoritemmodel.py 288 B

123456789
  1. from django.db import models
  2. class MonitorItem(models.Model):
  3. id = models.CharField(max_length=255, primary_key=True)
  4. value = models.TextField(blank=True, null=True)
  5. updated = models.DateTimeField(blank=True, null=True)
  6. class Meta:
  7. app_label = 'misago'