Skip to content

Commit

Permalink
fix: Set application default language (#2206)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohuzhang1 authored Feb 10, 2025
1 parent a9b2a1c commit 0e68f4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# Generated by Django 4.2.15 on 2025-01-20 06:59

import application.models.api_key_model
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('application', '0023_application_stt_autosend'),
]
Expand All @@ -14,6 +12,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='applicationaccesstoken',
name='language',
field=models.CharField(default=application.models.api_key_model.get_language, max_length=10, verbose_name='语言'),
field=models.CharField(default=None, max_length=10, null=True, verbose_name='语言')
),
]

This file was deleted.

0 comments on commit 0e68f4a

Please sign in to comment.