1
0
forked from erp-dev/erp

fix: appversions

This commit is contained in:
2026-07-11 00:05:05 +08:00
parent 48e4782e1e
commit e91d06e4b6
26 changed files with 2582 additions and 19 deletions

View File

@@ -0,0 +1,25 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("notifier", "0003_alter_notifier_channel_alter_notifierroute_event_key"),
]
operations = [
migrations.AlterField(
model_name="notifier",
name="channel",
field=models.CharField(
choices=[
("wecom_webhook", "企业微信机器人"),
("message_api", "消息发送 API"),
("jpush", "极光推送"),
],
default="wecom_webhook",
max_length=50,
verbose_name="通知渠道",
),
),
]