Files
insta/accounts/migrations/0002_customuser_active_until.py
Beyhan Oğur 2be3a313ad first commit
2026-04-26 22:26:46 +03:00

19 lines
504 B
Python

# Generated by Django 6.0.3 on 2026-03-27 19:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('accounts', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='customuser',
name='active_until',
field=models.DateTimeField(blank=True, help_text='If set, the account is automatically deactivated after this date.', null=True, verbose_name='active until'),
),
]