Extend WebHook URL to 255 chars (was: 200)

This commit is contained in:
Martin Gross
2021-07-05 09:56:50 +02:00
parent d04f93d45c
commit d67954de3f
2 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.2 on 2021-07-05 07:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixapi', '0005_auto_20191028_1541'),
]
operations = [
migrations.AlterField(
model_name='webhook',
name='target_url',
field=models.URLField(max_length=255),
),
]