Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects

Made mapping testing page nullable

Merged Vincent SIMONIN requested to merge testingpage_nullable into main
4 files
+ 21
3
Compare changes
  • Side-by-side
  • Inline

Files

from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('netbox_rps_plugin', '0003_http_header_unique_constraint')
]
operations = [
migrations.AlterField(
model_name='mapping',
name='testingpage',
field=models.CharField(max_length=120, null=True, blank=True),
),
]
Loading