# 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'), ), ]