File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 4.2.4 on 2023-08-10 21:03
2
+
3
+ from django .db import migrations , models
4
+
5
+
6
+ class Migration (migrations .Migration ):
7
+ dependencies = [
8
+ ("projects" , "0103_alter_emailhook_project_alter_webhook_project" ),
9
+ ]
10
+
11
+ operations = [
12
+ migrations .AlterField (
13
+ model_name = "httpheader" ,
14
+ name = "value" ,
15
+ field = models .CharField (max_length = 4096 ),
16
+ ),
17
+ ]
Original file line number Diff line number Diff line change @@ -1890,7 +1890,7 @@ class HTTPHeader(TimeStampedModel, models.Model):
1890
1890
max_length = 128 ,
1891
1891
choices = HEADERS_CHOICES ,
1892
1892
)
1893
- value = models .CharField (max_length = 256 )
1893
+ value = models .CharField (max_length = 4096 )
1894
1894
only_if_secure_request = models .BooleanField (
1895
1895
help_text = 'Only set this header if the request is secure (HTTPS)' ,
1896
1896
)
You can’t perform that action at this time.
0 commit comments