Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects

Increase the mapping URL max length to 2000 char

Merged Vincent SIMONIN requested to merge url_max_length into main
7 files
+ 107
8
Compare changes
  • Side-by-side
  • Inline
Files
7
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('netbox_rps_plugin', '0005_source_mapping_unique_constraint')
]
operations = [
migrations.AlterField(
model_name='mapping',
name='source',
field=models.CharField(null=False, blank=False, max_length=2000, unique=True),
),
migrations.AlterField(
model_name='mapping',
name='target',
field=models.CharField(null=False, blank=False, max_length=2000),
),
migrations.AlterField(
model_name='mapping',
name='testingpage',
field=models.CharField(null=True, blank=True, max_length=2000),
),
]
Loading