1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00

fix migration hierarchy after undoing the #21 revert (#21, #631) (#643)

This commit is contained in:
Matt Griswold
2020-02-05 23:15:46 -06:00
committed by GitHub
parent 06805fef36
commit 70fdd30f02
3 changed files with 23 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2020-01-02 09:24
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0027_never_via_route_servers"),
]
operations = [
migrations.AlterField(
model_name="ixlan",
name="id",
field=models.IntegerField(primary_key=True, serialize=False),
),
]