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:
parent
6867154963
commit
9bff10de6d
4 changed files with 11 additions and 27 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue