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 30, 2024
1 parent d75bdf9 commit 57691cc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions humitifier-server/src/hosts/migrations/0007_alter_alert_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 5.1.2 on 2024-10-30 13:50

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("hosts", "0006_alter_host_options_host_os"),
]

operations = [
migrations.AlterField(
model_name="alert",
name="type",
field=models.CharField(
choices=[
("Outdated OS", "Outdated Os"),
("Has fact error", "Fact Error"),
("Puppet agent disabled", "Disabled Puppet"),
],
max_length=255,
),
),
]

0 comments on commit 57691cc

Please sign in to comment.