Skip to content

Commit

Permalink
Merge pull request #65 from jhonatan-lopes/fix-missing-migration
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
Stormheg authored Dec 13, 2023
2 parents 9c4aaa8 + 7665377 commit 52fd72c
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.1.13 on 2023-11-28 14:31

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('wagtailcore', '0078_referenceindex'),
('wagtail_ab_testing', '0001_squashed_0012_abtest_variant_revision'),
]

operations = [
migrations.AlterField(
model_name='abtest',
name='variant_revision',
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='+', to='wagtailcore.revision'),
),
]

0 comments on commit 52fd72c

Please sign in to comment.