comparison Mapping.py @ 6:87317ba41816

add a creation date for the feed entry
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 27 Apr 2010 02:30:50 +0200
parents bfd47f55d85b
children 215c34f61e95
comparison
equal deleted inserted replaced
5:bfd47f55d85b 6:87317ba41816
20 Column("url", String(255), nullable=False) 20 Column("url", String(255), nullable=False)
21 ) 21 )
22 22
23 feedEntryTable = Table("feed_entry", metadata, 23 feedEntryTable = Table("feed_entry", metadata,
24 Column("pk", Integer, primary_key=True), 24 Column("pk", Integer, primary_key=True),
25 Column("create_timestamp", DateTime, nullable=False),
26
25 Column("id", String(255), nullable=False), 27 Column("id", String(255), nullable=False),
26 Column("link", String(255), nullable=False), 28 Column("link", String(255), nullable=False),
27 Column("title", String, nullable=False), 29 Column("title", String, nullable=False),
28 Column("summary", String, nullable=False), 30 Column("summary", String, nullable=False),
29 Column("updated", DateTime), 31 Column("updated", DateTime),