mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-06 05:45:27 +00:00
10 lines
274 B
Python
10 lines
274 B
Python
import uuid
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.db import models
|
|
|
|
|
|
class Check(models.Model):
|
|
code = models.UUIDField(default=uuid.uuid4, editable=False)
|
|
user = models.ForeignKey(User)
|
|
last_ping = models.DateTimeField(null=True, blank=True)
|