From 3eccdcf81b6e011af5c90cd86009537c57ddae58 Mon Sep 17 00:00:00 2001 From: Sebastian Dietrich Date: Sun, 19 Jul 2020 13:20:42 +0200 Subject: [PATCH] Add missing column "repos" to table "code_comments_subscriptions" (fixes regression in ffd97bb2c78948775e8e0aef9364623aa609b912) --- code_comments/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/code_comments/db.py b/code_comments/db.py index 0fb56a2..212dd37 100644 --- a/code_comments/db.py +++ b/code_comments/db.py @@ -31,6 +31,7 @@ Column('user'), Column('type'), Column('path'), + Column('repos'), Column('rev'), Column('notify', type='bool'), Index(['user']),