Skip to content

Commit

Permalink
fix: added missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
tymees committed Oct 31, 2024
1 parent 5b3614e commit a4a6e50
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.1.2 on 2024-10-31 15:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("hosts", "0007_alter_alert_type"),
]

operations = [
migrations.AddField(
model_name="host",
name="archival_date",
field=models.DateTimeField(null=True),
),
migrations.AddField(
model_name="host",
name="archived",
field=models.BooleanField(default=False),
),
]

0 comments on commit a4a6e50

Please sign in to comment.