chore: removed migrations

This commit is contained in:
NarayanBavisetti 2024-05-23 16:56:00 +05:30
parent 8c6fef8f85
commit 7b0062b251
2 changed files with 0 additions and 18 deletions

View File

@ -1,17 +0,0 @@
# Generated by Django 4.2.11 on 2024-05-06 12:16
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('db', '0064_auto_20240409_1134'),
]
operations = [
migrations.AlterUniqueTogether(
name='issuelabel',
unique_together={('issue', 'label')},
),
]

View File

@ -537,7 +537,6 @@ class IssueLabel(ProjectBaseModel):
)
class Meta:
unique_together = ["issue", "label"]
verbose_name = "Issue Label"
verbose_name_plural = "Issue Labels"
db_table = "issue_labels"