Skip to content

Commit

Permalink
Fixes: #52 - Fixed Migration Reversal
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSheps committed Nov 3, 2024
1 parent a301d84 commit 594cd51
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 594cd51

Please sign in to comment.