Ilo/apps/accounts/migrations/0003_user_last_active_at.py
2026-05-02 20:01:30 +03:30

19 lines
565 B
Python

# Generated by Django 5.1.15 on 2026-05-02 16:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('accounts', '0002_teacherprofile_avatar_teacherprofile_headline_and_more'),
]
operations = [
migrations.AddField(
model_name='user',
name='last_active_at',
field=models.DateTimeField(blank=True, db_index=True, help_text='Updated on each authenticated API request (debounced ~5 minutes).', null=True, verbose_name='last active at'),
),
]