20 lines
479 B
Python
20 lines
479 B
Python
![]() |
# Generated by Django 5.2 on 2025-05-16 03:12
|
||
|
|
||
|
import apps.discovery.models
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('discovery', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='searchsession',
|
||
|
name='date_created',
|
||
|
field=models.DateField(default=apps.discovery.models.get_current_date, verbose_name='创建日期'),
|
||
|
),
|
||
|
]
|