chore: issue link model field change (#3852)

This commit is contained in:
Bavisetti Narayan 2024-03-06 14:21:07 +05:30 committed by GitHub
parent 53367a6bc4
commit 87eadc3c5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 73 additions and 2 deletions

View file

@ -320,7 +320,7 @@ class IssueAssignee(ProjectBaseModel):
class IssueLink(ProjectBaseModel):
title = models.CharField(max_length=255, null=True, blank=True)
url = models.URLField()
url = models.TextField()
issue = models.ForeignKey(
"db.Issue", on_delete=models.CASCADE, related_name="issue_link"
)