This commit is contained in:
2025-01-11 00:53:16 +01:00
parent a5b6b54429
commit cc66878cf7
11 changed files with 304 additions and 1 deletions

View File

@@ -13,6 +13,9 @@ class PasswordEntry(models.Model):
class Meta:
unique_together = ('site', 'username', 'client_id')
def __str__(self):
return self.username
class MasterHash(models.Model):
hash = models.BinaryField()
created_at = models.DateTimeField(auto_now_add=True)