mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-19 19:26:17 +00:00
Remove schedule_last_calculated_at field from PeerScheduling model
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 5.2.11 on 2026-02-04 14:03
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scheduler', '0002_alter_scheduleslot_profile'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='peerscheduling',
|
||||
name='schedule_last_calculated_at',
|
||||
),
|
||||
]
|
||||
@@ -53,7 +53,6 @@ class PeerScheduling(models.Model):
|
||||
|
||||
next_scheduled_enable_at = models.DateTimeField(null=True, blank=True)
|
||||
next_scheduled_disable_at = models.DateTimeField(null=True, blank=True)
|
||||
schedule_last_calculated_at = models.DateTimeField(null=True, blank=True)
|
||||
|
||||
next_manual_suspend_at = models.DateTimeField(null=True, blank=True)
|
||||
next_manual_unsuspend_at = models.DateTimeField(null=True, blank=True)
|
||||
|
||||
Reference in New Issue
Block a user