Little sql model update
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 17 Dec 2011 16:34:55 +0000 (17:34 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 17 Dec 2011 16:34:55 +0000 (17:34 +0100)
- Add title to the MediaEntry
- Rename fp_verification_expire to fp_token_expire to
  follow the mongo model.

mediagoblin/db/sql/models.py

index a38be1cc14858d0c0102df8d8dd891e3e290ec98..7723a7538a0379e50828d45bef6c839578339599 100644 (file)
@@ -25,7 +25,7 @@ class User(Base):
     bio = Column(UnicodeText) # ??
     bio_html = Column(UnicodeText) # ??
     fp_verification_key = Column(Unicode)
-    fp_verification_expire = Column(DateTime)
+    fp_token_expire = Column(DateTime)
 
     ## TODO
     # plugin data would be in a separate model
@@ -36,6 +36,7 @@ class MediaEntry(Base):
 
     id = Column(Integer, primary_key=True)
     uploader = Column(Integer, ForeignKey('users.id'), nullable=False)
+    title = Column(Unicode, nullable=False)
     slug = Column(Unicode, nullable=False)
     created = Column(DateTime, nullable=False, default=datetime.datetime.now)
     description = Column(UnicodeText) # ??