0029_token_mfa.py 467 B

1234567891011121314151617181920
  1. # Generated by Django 4.1 on 2022-08-25 03:00
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. (
  6. "desecapi",
  7. "0028_authenticatedcreatetotpfactoruseraction_basefactor_and_more",
  8. ),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name="token",
  13. name="mfa",
  14. field=models.BooleanField(default=None, null=True),
  15. ),
  16. ]