20 lines
505 B
Python
20 lines
505 B
Python
# Generated by Django 4.2.15 on 2025-01-20 03:20
|
|
|
|
from django.db import migrations, models
|
|
import smartdoc.conf
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('application', '0023_application_stt_autosend'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='applicationaccesstoken',
|
|
name='language',
|
|
field=models.CharField(default=smartdoc.conf.Config.get_language_code, max_length=10, verbose_name='语言'),
|
|
),
|
|
]
|