20 lines
487 B
Python
20 lines
487 B
Python
|
# Generated by Django 4.1.3 on 2023-12-15 05:10
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('fwd_api', '0156_alter_subscriptionrequestfile_code'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='subscriptionrequest',
|
||
|
name='created_at',
|
||
|
field=models.DateTimeField(db_index=True, default=django.utils.timezone.now),
|
||
|
),
|
||
|
]
|