mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-07-21 03:14:23 +02:00
Timezone configuration, cron monitoring and backup debug information
This commit is contained in:
parent
c5307ee1ee
commit
0714eff28a
9 changed files with 97 additions and 8 deletions
|
@ -1,12 +1,14 @@
|
|||
from django.db import models
|
||||
import uuid
|
||||
|
||||
|
||||
class WebadminSettings(models.Model):
|
||||
name = models.CharField(default='webadmin_settings', max_length=20, unique=True)
|
||||
update_available = models.BooleanField(default=False)
|
||||
current_version = models.PositiveIntegerField(default=0)
|
||||
latest_version = models.PositiveIntegerField(default=0)
|
||||
last_checked = models.DateTimeField(blank=True, null=True)
|
||||
cron_last_run = models.DateTimeField(blank=True, null=True)
|
||||
|
||||
updated = models.DateTimeField(auto_now=True)
|
||||
created = models.DateTimeField(auto_now_add=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue