From 903e97685f394539f2a4a309e8cd5b999f537c19 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 4 Apr 2012 08:25:53 -0400 Subject: [PATCH] download table --- patchmaster/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patchmaster/models.py b/patchmaster/models.py index 345da1a..c1f293e 100644 --- a/patchmaster/models.py +++ b/patchmaster/models.py @@ -71,6 +71,7 @@ class Patch(db.Model, BaseModel): class Download(db.Model, BaseModel): """A User's download.""" + __table__ = 'download' patch_id = db.Column(db.Integer, db.ForeignKey(Patch.id)) checksum = db.Column(db.String(100))