aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot_gentoo_ci/db/model.py')
-rw-r--r--buildbot_gentoo_ci/db/model.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildbot_gentoo_ci/db/model.py b/buildbot_gentoo_ci/db/model.py
index b80281e..3ae4f92 100644
--- a/buildbot_gentoo_ci/db/model.py
+++ b/buildbot_gentoo_ci/db/model.py
@@ -243,6 +243,7 @@ class Model(base.DBConnectorComponent):
sa.ForeignKey('versions.uuid', ondelete='CASCADE'),
nullable=False),
sa.Column('buildbot_build_id', sa.Integer),
+ sa.Column('bug_id', sa.Integer, nullable=False, default=0),
sa.Column('status', sa.Enum('failed','completed','in-progress','waiting', 'warning'), nullable=False),
sa.Column('requested', sa.Boolean, default=False),
sa.Column('created_at', sa.Integer, nullable=True),