0035_provider_asns.py 480 B

12345678910111213141516171819
  1. # Generated by Django 4.0.3 on 2022-03-30 20:27
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('ipam', '0057_created_datetimefield'),
  6. ('circuits', '0034_created_datetimefield'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='provider',
  11. name='asns',
  12. field=models.ManyToManyField(blank=True, related_name='providers', to='ipam.asn'),
  13. ),
  14. ]