Skip to content

Commit

Permalink
adding migration
Browse files Browse the repository at this point in the history
  • Loading branch information
KarenAJ committed Oct 17, 2024
1 parent f2687e3 commit 368ccb9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/core/migrations/0007_alter_term_mapping.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2024-10-17 16:01

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0006_auto_20230901_1454'),
]

operations = [
migrations.AlterField(
model_name='term',
name='mapping',
field=models.ManyToManyField(blank=True, to='core.term'),
),
]

0 comments on commit 368ccb9

Please sign in to comment.