21 lines
542 B
Python
21 lines
542 B
Python
# Generated by Django 5.1.3 on 2025-02-27 21:37
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('user_profile', '0003_alter_friend_request_to_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='friend_request',
|
|
name='asked_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='asked at'),
|
|
preserve_default=False,
|
|
),
|
|
]
|