Code development platform for open source projects from the European Union institutions

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
4
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