0041_standardize_description_comments.py 420 B

123456789101112131415161718
  1. # Generated by Django 4.1.2 on 2022-11-03 18:24
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('circuits', '0040_provider_remove_deprecated_fields'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='provider',
  10. name='description',
  11. field=models.CharField(blank=True, max_length=200),
  12. ),
  13. ]