Skip to content

Commit 5ed4c15

Browse files
allen12921LeoQuote
authored andcommitted
Update models.py
fix ci
1 parent 3a4231a commit 5ed4c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ResourceGroup(models.Model):
2121
ding_webhook = models.CharField("钉钉webhook地址", max_length=255, blank=True)
2222
feishu_webhook = models.CharField("飞书webhook地址", max_length=255, blank=True)
2323
qywx_webhook = models.CharField("企业微信webhook地址", max_length=255, blank=True)
24-
group_checklist = models.TextField("上线checklist",blank=True)
24+
group_checklist = models.TextField("上线checklist", default='')
2525
is_deleted = models.IntegerField("是否删除", choices=((0, "否"), (1, "是")), default=0)
2626
create_time = models.DateTimeField(auto_now_add=True)
2727
sys_time = models.DateTimeField(auto_now=True)

0 commit comments

Comments
 (0)