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

Update HttpHeader schema

Merged Vincent SIMONIN requested to merge http_headers_schema_update into main
4 files
+ 27
4
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', '0002_http_header')
]
operations = [
migrations.AlterField(
model_name='httpheader',
name='value',
field=models.CharField(max_length=256, null=True, blank=True),
),
migrations.AddConstraint(
model_name='httpheader',
constraint=models.UniqueConstraint(fields=('mapping', 'name', 'apply_to'), name='netbox_rps_plugin_httpheader_unique_mapping_name_apply_to'),
),
]
Loading