Skip to content

Commit

Permalink
fix ! migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
vitali-yanushchyk-valor committed Sep 24, 2024
1 parent 614d5cf commit f9014dd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0.6 on 2024-08-07 14:14

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("api", "0002_remove_duplicate_first_filename_and_more"),
]

operations = [
migrations.RemoveField(
model_name="deduplicationset",
name="name",
),
]
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 5.0.7 on 2024-09-20 08:47
# Generated by Django 5.0.7 on 2024-09-24 08:10

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("api", "0002_remove_duplicate_first_filename_and_more"),
("api", "0003_remove_deduplicationset_name"),
]

operations = [
Expand All @@ -19,7 +19,7 @@ class Migration(migrations.Migration):
name="description",
field=models.TextField(blank=True, null=True),
),
migrations.AlterField(
migrations.AddField(
model_name="deduplicationset",
name="name",
field=models.CharField(
Expand Down

0 comments on commit f9014dd

Please sign in to comment.