U 增加发布申请标题字段长度

pull/591/head
vapao 2022-10-08 15:04:27 +08:00 committed by yombo
parent 4c4a6de99c
commit 30733afe1a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class DeployRequest(models.Model, ModelMixin):
)
deploy = models.ForeignKey(Deploy, on_delete=models.CASCADE)
repository = models.ForeignKey(Repository, null=True, on_delete=models.SET_NULL)
name = models.CharField(max_length=50)
name = models.CharField(max_length=100)
type = models.CharField(max_length=2, choices=TYPES, default='1')
extra = models.TextField()
host_ids = models.TextField()