Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-prommersberger committed Jul 26, 2024
1 parent 126cb6b commit e8baa97
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-07-26 21:41

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('hardware_controller', '0003_alter_hardwareprofile_ip_addr'),
]

operations = [
migrations.AlterField(
model_name='hardwareprofile',
name='ip_addr',
field=models.GenericIPAddressField(default='240.0.0.0'),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-07-26 21:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('hardware_controller', '0004_alter_hardwareprofile_ip_addr'),
]

operations = [
migrations.AlterField(
model_name='hardwareprofile',
name='ip_addr',
field=models.CharField(default='240.0.0.0'),
),
]

0 comments on commit e8baa97

Please sign in to comment.