diff --git a/runbot/models/team.py b/runbot/models/team.py
index 9a2a5392..5112b204 100644
--- a/runbot/models/team.py
+++ b/runbot/models/team.py
@@ -36,6 +36,7 @@ class RunbotTeam(models.Model):
)
module_ownership_ids = fields.One2many('runbot.module.ownership', 'team_id')
codeowner_ids = fields.One2many('runbot.codeowner', 'team_id')
+ trigger_ids = fields.Many2many('runbot.trigger', string='Followed triggers')
upgrade_exception_ids = fields.One2many('runbot.upgrade.exception', 'team_id', string='Team Upgrade Exceptions')
github_team = fields.Char('Github team', tracking=True)
github_logins = fields.Char('Github logins', help='Additional github logins, prefer adding the login on the member of the team', tracking=True)
diff --git a/runbot/views/dashboard_views.xml b/runbot/views/dashboard_views.xml
index 8406a6d8..9466bcd9 100644
--- a/runbot/views/dashboard_views.xml
+++ b/runbot/views/dashboard_views.xml
@@ -39,9 +39,10 @@