Skip to content

Commit

Permalink
Store subscription time as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpessas committed Jan 7, 2011
1 parent 2fe81b0 commit 3fbbb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jidperson/models.py
Expand Up @@ -6,7 +6,7 @@
class JIDPerson(db.Model):
"""Model for the subscribers."""
jid = db.IMProperty(required=True, indexed=True)
reg_date = db.DateProperty(auto_now_add=True)
reg_date = db.DateTimeProperty(auto_now_add=True)


def create_im(jid):
Expand Down

0 comments on commit 3fbbb32

Please sign in to comment.