dynamicweb/datacenterlight/models.py

11 lines
186 B
Python
Raw Normal View History

2016-12-20 23:05:20 +00:00
from django.db import models
# Create your models here.
class BetaAccess(models.Model):
email = models.CharField(max_length=250)
def __str__(self):
return self.email