chore: changed issue priority from NULL to none (#2142)

* chore: changed issue priority from NULL to none

* fix: deleted the migration file
This commit is contained in:
Bavisetti Narayan 2023-09-12 13:06:49 +05:30 committed by GitHub
parent 6867154963
commit 9bff10de6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 27 deletions

View file

@ -38,6 +38,7 @@ class Issue(ProjectBaseModel):
("high", "High"),
("medium", "Medium"),
("low", "Low"),
("none", "None")
)
parent = models.ForeignKey(
"self",
@ -64,8 +65,7 @@ class Issue(ProjectBaseModel):
max_length=30,
choices=PRIORITY_CHOICES,
verbose_name="Issue Priority",
null=True,
blank=True,
default="none",
)
start_date = models.DateField(null=True, blank=True)
target_date = models.DateField(null=True, blank=True)