feat: add client release force update flag

This commit is contained in:
QiuSW
2026-07-08 15:38:59 +08:00
parent 30d9df34eb
commit 6646c64a76
14 changed files with 130 additions and 29 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.2.15 on 2026-07-08 07:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('portal', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='downloadrelease',
name='force_update',
field=models.BooleanField(default=False, verbose_name='强制更新'),
),
]