feat: migrate User model with kdf_salt field and update is_active default status

This commit is contained in:
Your Name
2026-04-10 10:20:27 +05:30
parent d74fcc0b9c
commit f0af27f15d
2 changed files with 24 additions and 0 deletions
+2
View File
@@ -41,6 +41,8 @@ class User(AbstractUser):
full_name = models.CharField(max_length=100)
email = models.EmailField(_("email address"), unique=True)
# salt for client-side key derivation
kdf_salt = models.CharField(max_length=128, blank=True, null=True)
# Default is False to enforce email verification