remove stats_sync_interval and stats_cache_interval from ClusterSettings model

This commit is contained in:
Eduardo Silva
2026-01-08 11:30:47 -03:00
parent dacaf2e4cc
commit 1593141932
3 changed files with 22 additions and 21 deletions

View File

@@ -8,8 +8,6 @@ class ClusterSettings(models.Model):
name = models.CharField(default='cluster_settings', max_length=16, unique=True)
enabled = models.BooleanField(default=False)
primary_enable_wireguard = models.BooleanField(default=True)
stats_sync_interval = models.IntegerField(default=60)
stats_cache_interval = models.IntegerField(default=60)
cluster_mode = models.CharField(default='mirror', max_length=16, choices=(('mirror', 'Mirror'), ))
restart_mode = models.CharField(default='auto', max_length=16, choices=(('auto', 'Automatic restart'),))
worker_display = models.CharField(