summaryrefslogtreecommitdiffstats
path: root/instruments/migrations/0003_alter_subinstrument_relative.py
blob: a958b697d8b827b2f08ec4227d59833e886dd175 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 5.0.4 on 2024-06-07 10:25

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("instruments", "0002_subinstrument_short"),
    ]

    operations = [
        migrations.AlterField(
            model_name="subinstrument",
            name="relative",
            field=models.ManyToManyField(blank=True, null=True, to="instruments.subinstrument"),
        ),
    ]