-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4204 from open-formulieren/backport/4165-26x
[#4165] Backport to 2.6.x
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
...tools/migrations/0007_alter_analyticstoolsconfiguration_analytics_cookie_consent_group.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.11 on 2024-04-17 08:38 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cookie_consent", "0002_auto__add_logitem"), | ||
("analytics_tools", "0006_auto_20240112_1046"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="analyticstoolsconfiguration", | ||
name="analytics_cookie_consent_group", | ||
field=models.ForeignKey( | ||
help_text="The cookie group used for analytical cookies. The analytics scripts are loaded only if this cookie group is accepted by the end-user.", | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
to="cookie_consent.cookiegroup", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters