aboutsummaryrefslogtreecommitdiff
path: root/rpki/gui/app/migrations/0001_initial.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpki/gui/app/migrations/0001_initial.py')
-rw-r--r--rpki/gui/app/migrations/0001_initial.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/rpki/gui/app/migrations/0001_initial.py b/rpki/gui/app/migrations/0001_initial.py
index 1a02dd8a..73884581 100644
--- a/rpki/gui/app/migrations/0001_initial.py
+++ b/rpki/gui/app/migrations/0001_initial.py
@@ -72,8 +72,8 @@ class Migration(migrations.Migration):
name='ResourceRangeAddressV4',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
- ('prefix_min', rpki.gui.models.IPv4AddressField(db_index=True)),
- ('prefix_max', rpki.gui.models.IPv4AddressField(db_index=True)),
+ ('prefix_min', rpki.gui.models.IPAddressField(db_index=True)),
+ ('prefix_max', rpki.gui.models.IPAddressField(db_index=True)),
('cert', models.ForeignKey(related_name='address_ranges', to='app.ResourceCert')),
],
options={
@@ -85,8 +85,8 @@ class Migration(migrations.Migration):
name='ResourceRangeAddressV6',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
- ('prefix_min', rpki.gui.models.IPv6AddressField(db_index=True)),
- ('prefix_max', rpki.gui.models.IPv6AddressField(db_index=True)),
+ ('prefix_min', rpki.gui.models.IPAddressField(db_index=True)),
+ ('prefix_max', rpki.gui.models.IPAddressField(db_index=True)),
('cert', models.ForeignKey(related_name='address_ranges_v6', to='app.ResourceCert')),
],
options={