perf: migrate

pull/15921/head
feng 2025-08-25 11:11:24 +08:00 committed by feng626
parent e6d02eaf4c
commit 2f1a65f120
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 4.1.13 on 2025-08-25 03:03
import common.utils.django
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('perms', '0036_auto_20231108_1626'),
]
operations = [
migrations.AlterField(
model_name='assetpermission',
name='date_expired',
field=models.DateTimeField(db_index=True, default=common.utils.django.asset_permission_date_expired_default, verbose_name='Date expired'),
),
]

View File

@ -0,0 +1,19 @@
# Generated by Django 4.1.13 on 2025-08-25 03:03
import common.utils.django
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0050_user_lark_id_alter_user_source'),
]
operations = [
migrations.AlterField(
model_name='user',
name='date_expired',
field=models.DateTimeField(blank=True, db_index=True, default=common.utils.django.user_date_expired_default, null=True, verbose_name='Date expired'),
),
]