mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 11:48:42 +02:00
- Add migration 106: CREATE INDEX CONCURRENTLY on member(user_id, workspace_id) - Rewrite ListWorkspaces to drive from member table with explicit fields - Regenerate all sqlc code with v1.31.1 (intentional version upgrade) Co-authored-by: multica-agent <github@multica.ai>
105 lines
2.5 KiB
Go
105 lines
2.5 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.31.1
|
|
// source: issue_reaction.sql
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
const addIssueReaction = `-- name: AddIssueReaction :one
|
|
INSERT INTO issue_reaction (issue_id, workspace_id, actor_type, actor_id, emoji)
|
|
VALUES ($1, $2, $3, $4, $5)
|
|
ON CONFLICT (issue_id, actor_type, actor_id, emoji) DO UPDATE SET created_at = issue_reaction.created_at
|
|
RETURNING id, issue_id, workspace_id, actor_type, actor_id, emoji, created_at
|
|
`
|
|
|
|
type AddIssueReactionParams struct {
|
|
IssueID pgtype.UUID `json:"issue_id"`
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
ActorType string `json:"actor_type"`
|
|
ActorID pgtype.UUID `json:"actor_id"`
|
|
Emoji string `json:"emoji"`
|
|
}
|
|
|
|
func (q *Queries) AddIssueReaction(ctx context.Context, arg AddIssueReactionParams) (IssueReaction, error) {
|
|
row := q.db.QueryRow(ctx, addIssueReaction,
|
|
arg.IssueID,
|
|
arg.WorkspaceID,
|
|
arg.ActorType,
|
|
arg.ActorID,
|
|
arg.Emoji,
|
|
)
|
|
var i IssueReaction
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.IssueID,
|
|
&i.WorkspaceID,
|
|
&i.ActorType,
|
|
&i.ActorID,
|
|
&i.Emoji,
|
|
&i.CreatedAt,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const listIssueReactions = `-- name: ListIssueReactions :many
|
|
SELECT id, issue_id, workspace_id, actor_type, actor_id, emoji, created_at FROM issue_reaction
|
|
WHERE issue_id = $1
|
|
ORDER BY created_at ASC
|
|
`
|
|
|
|
func (q *Queries) ListIssueReactions(ctx context.Context, issueID pgtype.UUID) ([]IssueReaction, error) {
|
|
rows, err := q.db.Query(ctx, listIssueReactions, issueID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
items := []IssueReaction{}
|
|
for rows.Next() {
|
|
var i IssueReaction
|
|
if err := rows.Scan(
|
|
&i.ID,
|
|
&i.IssueID,
|
|
&i.WorkspaceID,
|
|
&i.ActorType,
|
|
&i.ActorID,
|
|
&i.Emoji,
|
|
&i.CreatedAt,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const removeIssueReaction = `-- name: RemoveIssueReaction :exec
|
|
DELETE FROM issue_reaction
|
|
WHERE issue_id = $1 AND actor_type = $2 AND actor_id = $3 AND emoji = $4
|
|
`
|
|
|
|
type RemoveIssueReactionParams struct {
|
|
IssueID pgtype.UUID `json:"issue_id"`
|
|
ActorType string `json:"actor_type"`
|
|
ActorID pgtype.UUID `json:"actor_id"`
|
|
Emoji string `json:"emoji"`
|
|
}
|
|
|
|
func (q *Queries) RemoveIssueReaction(ctx context.Context, arg RemoveIssueReactionParams) error {
|
|
_, err := q.db.Exec(ctx, removeIssueReaction,
|
|
arg.IssueID,
|
|
arg.ActorType,
|
|
arg.ActorID,
|
|
arg.Emoji,
|
|
)
|
|
return err
|
|
}
|