perf: gathered-accounts api (#9451)

Co-authored-by: feng <1304903146@qq.com>
This commit is contained in:
fit2bot
2023-02-07 13:27:44 +08:00
committed by GitHub
parent 245bf073e9
commit 90d5f62327
9 changed files with 140 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.16 on 2023-02-07 04:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('assets', '0107_automation'),
]
operations = [
migrations.AlterField(
model_name='platform',
name='charset',
field=models.CharField(choices=[('utf-8', 'UTF-8'), ('gbk', 'GBK')], default='utf-8', max_length=8, verbose_name='Charset'),
),
]