From 96957f65d338331a4d743168f5c21df0d580c19b Mon Sep 17 00:00:00 2001 From: Sacha Al Himdani Date: Thu, 23 Oct 2025 11:11:27 +0200 Subject: [PATCH] Fix query indentation Signed-off-by: Sacha Al Himdani --- pkg/coredata/slack_message.go | 50 +++++++++++++++++------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/pkg/coredata/slack_message.go b/pkg/coredata/slack_message.go index 84d741989..c4baf22c4 100644 --- a/pkg/coredata/slack_message.go +++ b/pkg/coredata/slack_message.go @@ -83,31 +83,31 @@ func (s *SlackMessage) Insert( scope Scoper, ) error { q := ` - INSERT INTO slack_messages ( - id, - tenant_id, - organization_id, - type, - body, - requester_email, - metadata, - initial_slack_message_id, - created_at, - updated_at - ) - VALUES ( - @id, - @tenant_id, - @organization_id, - @type, - @body, - @requester_email, - @metadata, - @initial_slack_message_id, - @created_at, - @updated_at - ) - ` +INSERT INTO slack_messages ( + id, + tenant_id, + organization_id, + type, + body, + requester_email, + metadata, + initial_slack_message_id, + created_at, + updated_at +) +VALUES ( + @id, + @tenant_id, + @organization_id, + @type, + @body, + @requester_email, + @metadata, + @initial_slack_message_id, + @created_at, + @updated_at +) +` args := pgx.StrictNamedArgs{ "id": s.ID,