diff --git a/progit/model.py b/progit/model.py index c504f18..5f335cf 100644 --- a/progit/model.py +++ b/progit/model.py @@ -163,6 +163,7 @@ class Issue(BASE): content = sa.Column( sa.Text(), nullable=False) + user = sa.Column(sa.String(32), nullable=False) date_created = sa.Column(sa.DateTime, nullable=False, default=datetime.datetime.utcnow)