Skip to content

Commit

Permalink
🗃️ Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
pajowu committed Jan 22, 2025
1 parent 07332a0 commit 54dc56e
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.2.16 on 2025-01-22 16:39

from django.db import migrations, models
import fragdenstaat_de.fds_donation.models


class Migration(migrations.Migration):

dependencies = [
("fds_donation", "0047_donation_extra_action_label_and_more"),
]

operations = [
migrations.AlterField(
model_name="donationformcmsplugin",
name="next_url",
field=models.CharField(
blank=True,
max_length=255,
validators=[
fragdenstaat_de.fds_donation.models.validate_allowed_host_and_scheme
],
),
),
]

0 comments on commit 54dc56e

Please sign in to comment.