Skip to content

Commit

Permalink
migrations: add missing migration in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmarsh committed Jan 30, 2024
1 parent c8459e6 commit d86ddb6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tests/test_app/migrations/0002_alter_testmodel_related_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.0.1 on 2024-01-30 19:07

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('test_app', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='testmodel',
name='related',
field=models.ManyToManyField(blank=True, related_name='+', to='test_app.testmodelrelated'),
),
migrations.AlterField(
model_name='testmodel',
name='related_through',
field=models.ManyToManyField(blank=True, related_name='+', through='test_app.TestModelThrough', to='test_app.testmodelrelated'),
),
]

0 comments on commit d86ddb6

Please sign in to comment.