import railshosting from static
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
c05c253b42
commit
f09ee6cd79
85 changed files with 15683 additions and 0 deletions
8
railshosting/models.py
Normal file
8
railshosting/models.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.db import models
|
||||
|
||||
class RailsBetaUSer(models.Model):
|
||||
email = models.EmailField(unique=True)
|
||||
received_date = models.DateTimeField('date received')
|
||||
|
||||
def __str__(self):
|
||||
return "%s - %s" % (self.email, self.received_date)
|
||||
Loading…
Add table
Add a link
Reference in a new issue