Skip to content

Commit

Permalink
Update models.py
Browse files Browse the repository at this point in the history
fix ci
  • Loading branch information
allen12921 committed Mar 30, 2023
1 parent 199f7bf commit d7242b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ResourceGroup(models.Model):
ding_webhook = models.CharField("钉钉webhook地址", max_length=255, blank=True)
feishu_webhook = models.CharField("飞书webhook地址", max_length=255, blank=True)
qywx_webhook = models.CharField("企业微信webhook地址", max_length=255, blank=True)
group_checklist = models.TextField("上线checklist", default='')
group_checklist = models.TextField("上线checklist", default="")
is_deleted = models.IntegerField("是否删除", choices=((0, "否"), (1, "是")), default=0)
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
Expand Down

0 comments on commit d7242b7

Please sign in to comment.