From 09696aec1bea647a5bfc7be16b31054626d721e4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 30 Dec 2023 11:58:02 +0100 Subject: [PATCH] fix: create webhooks table for fresh installation Resolves https://github.com/go-vikunja/api/issues/104 Resolves https://kolaente.dev/vikunja/api/issues/1655 --- pkg/models/models.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/models/models.go b/pkg/models/models.go index 36e5499450c..7c35f4ed89a 100644 --- a/pkg/models/models.go +++ b/pkg/models/models.go @@ -60,6 +60,7 @@ func GetTables() []interface{} { &Favorite{}, &APIToken{}, &TypesenseSync{}, + &Webhook{}, } }