Skip to content

Commit

Permalink
Merge pull request #53 from DanSheps/develop
Browse files Browse the repository at this point in the history
Fixes: #52 - Fixed Migration Reversal
  • Loading branch information
DanSheps authored Nov 3, 2024
2 parents 8cc9e74 + 5a5f8c2 commit 867f41a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netbox_routing/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ class Migration(migrations.Migration):
('sequence', models.PositiveSmallIntegerField()),
('type', models.CharField(max_length=6)),
('prefix', ipam.fields.IPNetworkField()),
('ge', models.PositiveSmallIntegerField()),
('le', models.PositiveSmallIntegerField()),
('ge', models.PositiveSmallIntegerField(blank=True, null=True)),
('le', models.PositiveSmallIntegerField(blank=True, null=True)),
('prefix_list', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='entries', to='netbox_routing.prefixlist')),
('tags', taggit.managers.TaggableManager(through='extras.TaggedItem', to='extras.Tag')),
],
Expand Down

0 comments on commit 867f41a

Please sign in to comment.