mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +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>
164 lines
4.2 KiB
Go
164 lines
4.2 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.31.1
|
|
// source: pinned_item.sql
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
const createPinnedItem = `-- name: CreatePinnedItem :one
|
|
INSERT INTO pinned_item (workspace_id, user_id, item_type, item_id, position)
|
|
VALUES ($1, $2, $3, $4, $5)
|
|
RETURNING id, workspace_id, user_id, item_type, item_id, position, created_at
|
|
`
|
|
|
|
type CreatePinnedItemParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
ItemType string `json:"item_type"`
|
|
ItemID pgtype.UUID `json:"item_id"`
|
|
Position float64 `json:"position"`
|
|
}
|
|
|
|
func (q *Queries) CreatePinnedItem(ctx context.Context, arg CreatePinnedItemParams) (PinnedItem, error) {
|
|
row := q.db.QueryRow(ctx, createPinnedItem,
|
|
arg.WorkspaceID,
|
|
arg.UserID,
|
|
arg.ItemType,
|
|
arg.ItemID,
|
|
arg.Position,
|
|
)
|
|
var i PinnedItem
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.WorkspaceID,
|
|
&i.UserID,
|
|
&i.ItemType,
|
|
&i.ItemID,
|
|
&i.Position,
|
|
&i.CreatedAt,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const deletePinnedItem = `-- name: DeletePinnedItem :exec
|
|
DELETE FROM pinned_item
|
|
WHERE workspace_id = $1 AND user_id = $2 AND item_type = $3 AND item_id = $4
|
|
`
|
|
|
|
type DeletePinnedItemParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
ItemType string `json:"item_type"`
|
|
ItemID pgtype.UUID `json:"item_id"`
|
|
}
|
|
|
|
func (q *Queries) DeletePinnedItem(ctx context.Context, arg DeletePinnedItemParams) error {
|
|
_, err := q.db.Exec(ctx, deletePinnedItem,
|
|
arg.WorkspaceID,
|
|
arg.UserID,
|
|
arg.ItemType,
|
|
arg.ItemID,
|
|
)
|
|
return err
|
|
}
|
|
|
|
const deletePinnedItemsByItem = `-- name: DeletePinnedItemsByItem :exec
|
|
DELETE FROM pinned_item
|
|
WHERE item_type = $1 AND item_id = $2
|
|
`
|
|
|
|
type DeletePinnedItemsByItemParams struct {
|
|
ItemType string `json:"item_type"`
|
|
ItemID pgtype.UUID `json:"item_id"`
|
|
}
|
|
|
|
func (q *Queries) DeletePinnedItemsByItem(ctx context.Context, arg DeletePinnedItemsByItemParams) error {
|
|
_, err := q.db.Exec(ctx, deletePinnedItemsByItem, arg.ItemType, arg.ItemID)
|
|
return err
|
|
}
|
|
|
|
const getMaxPinnedItemPosition = `-- name: GetMaxPinnedItemPosition :one
|
|
SELECT COALESCE(MAX(position), 0)::float8 AS max_position
|
|
FROM pinned_item
|
|
WHERE workspace_id = $1 AND user_id = $2
|
|
`
|
|
|
|
type GetMaxPinnedItemPositionParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
}
|
|
|
|
func (q *Queries) GetMaxPinnedItemPosition(ctx context.Context, arg GetMaxPinnedItemPositionParams) (float64, error) {
|
|
row := q.db.QueryRow(ctx, getMaxPinnedItemPosition, arg.WorkspaceID, arg.UserID)
|
|
var max_position float64
|
|
err := row.Scan(&max_position)
|
|
return max_position, err
|
|
}
|
|
|
|
const listPinnedItems = `-- name: ListPinnedItems :many
|
|
SELECT id, workspace_id, user_id, item_type, item_id, position, created_at FROM pinned_item
|
|
WHERE workspace_id = $1 AND user_id = $2
|
|
ORDER BY position ASC, created_at ASC
|
|
`
|
|
|
|
type ListPinnedItemsParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
}
|
|
|
|
func (q *Queries) ListPinnedItems(ctx context.Context, arg ListPinnedItemsParams) ([]PinnedItem, error) {
|
|
rows, err := q.db.Query(ctx, listPinnedItems, arg.WorkspaceID, arg.UserID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
items := []PinnedItem{}
|
|
for rows.Next() {
|
|
var i PinnedItem
|
|
if err := rows.Scan(
|
|
&i.ID,
|
|
&i.WorkspaceID,
|
|
&i.UserID,
|
|
&i.ItemType,
|
|
&i.ItemID,
|
|
&i.Position,
|
|
&i.CreatedAt,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const updatePinnedItemPosition = `-- name: UpdatePinnedItemPosition :exec
|
|
UPDATE pinned_item SET position = $1
|
|
WHERE id = $2 AND workspace_id = $3 AND user_id = $4
|
|
`
|
|
|
|
type UpdatePinnedItemPositionParams struct {
|
|
Position float64 `json:"position"`
|
|
ID pgtype.UUID `json:"id"`
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
}
|
|
|
|
func (q *Queries) UpdatePinnedItemPosition(ctx context.Context, arg UpdatePinnedItemPositionParams) error {
|
|
_, err := q.db.Exec(ctx, updatePinnedItemPosition,
|
|
arg.Position,
|
|
arg.ID,
|
|
arg.WorkspaceID,
|
|
arg.UserID,
|
|
)
|
|
return err
|
|
}
|