35862-vm/core/models.py
Flatlogic Bot e39a95b4fc v1
2025-11-20 05:21:31 +00:00

10 lines
279 B
Python

from django.db import models
class WhitelistEntry(models.Model):
gmail = models.EmailField(unique=True)
eth_address = models.CharField(max_length=42, unique=True)
created_at = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.gmail