perf: Migrate (#13742)

Co-authored-by: feng <1304903146@qq.com>
pull/13745/head
fit2bot 2024-07-17 10:24:19 +08:00 committed by GitHub
parent 6108a09089
commit b2f11bbbf3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -185,5 +185,6 @@ class Migration(migrations.Migration):
('alias', models.CharField(choices=[('@INPUT', 'Manual input'), ('@USER', 'Dynamic user'), ('@ANON', 'Anonymous account'), ('@SPEC', 'Specified account')], max_length=128, verbose_name='Alias')), ('alias', models.CharField(choices=[('@INPUT', 'Manual input'), ('@USER', 'Dynamic user'), ('@ANON', 'Anonymous account'), ('@SPEC', 'Specified account')], max_length=128, verbose_name='Alias')),
('secret_from_login', models.BooleanField(default=None, null=True, verbose_name='Secret from login')), ('secret_from_login', models.BooleanField(default=None, null=True, verbose_name='Secret from login')),
], ],
options={'verbose_name': 'Virtual account'},
), ),
] ]

View File

@ -1,10 +1,11 @@
# Generated by Django 4.1.13 on 2024-05-09 03:16 # Generated by Django 4.1.13 on 2024-05-09 03:16
import uuid
import django.contrib.auth.models import django.contrib.auth.models
import django.contrib.contenttypes.models import django.contrib.contenttypes.models
from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion
import uuid from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
@ -54,6 +55,7 @@ class Migration(migrations.Migration):
'proxy': True, 'proxy': True,
'indexes': [], 'indexes': [],
'constraints': [], 'constraints': [],
'verbose_name': 'ContentType'
}, },
bases=('contenttypes.contenttype',), bases=('contenttypes.contenttype',),
managers=[ managers=[