diff --git a/adminrestrict/migrations/0002_remove_allowedip_id_alter_allowedip_ip_address.py b/adminrestrict/migrations/0002_remove_allowedip_id_alter_allowedip_ip_address.py new file mode 100644 index 0000000..5db6b36 --- /dev/null +++ b/adminrestrict/migrations/0002_remove_allowedip_id_alter_allowedip_ip_address.py @@ -0,0 +1,22 @@ +# Generated by Django 5.0.9 on 2025-03-24 20:13 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adminrestrict', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='allowedip', + name='id', + ), + migrations.AlterField( + model_name='allowedip', + name='ip_address', + field=models.CharField(max_length=512, primary_key=True, serialize=False), + ), + ] diff --git a/setup.cfg b/setup.cfg index b88034e..08aedd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md +description_file = README.md