Files
member-console/internal/entitlements/queries/resource_pools.sql
T
cgalo5758 dd3962990b Adopt entity keys and add invoice numbers
Replace the entity slugs on organizations, workspaces, resource pools,
and
plan ladders with nullable `key` columns and add keys to products,
prices,
and entitlement sets. Rename `providers.slug` to `provider` and add
partial
unique indexes for system and org role names.

Assign invoice numbers per billing account from a gapless transactional
counter; Stripe's number moves to the invoice mapping as an external
reference.

Seeds, fixtures, and the operator lookup address rows by key, and the
returning-login resync no longer blanks a display name when the IdP
sends
no `name` claim.
2026-08-29 20:12:04 -05:00

45 lines
1.9 KiB
SQL

-- name: CreateResourcePool :one
-- `key` is the optional declarative address (entity-keys §3), unique within
-- the organization because a pool is a child of one. The console writes it
-- for exactly one row it creates by design: every organization's default
-- pool, keyed `default` (§4). Any other pool leaves it NULL unless a seed or
-- an API client names one.
INSERT INTO core.resource_pools (org_id, name, pool_type, is_auto_managed, key)
VALUES ($1, $2, $3, $4, sqlc.narg(key))
RETURNING *;
-- name: GetResourcePoolByOrgAndKey :one
-- Child key resolver (entity-keys §5). uq_resource_pools_org_id_key
-- guarantees at most one row matches; `default` resolves the pool the
-- console creates for every organization.
SELECT * FROM core.resource_pools
WHERE org_id = $1 AND key = $2;
-- name: GetResourcePoolByID :one
SELECT * FROM core.resource_pools
WHERE pool_id = $1;
-- name: GetDefaultPoolByOrgID :one
SELECT * FROM core.resource_pools
WHERE org_id = $1 AND pool_type = 'default' AND status = 'active'
LIMIT 1;
-- name: GetResourcePoolsByOrgID :many
SELECT * FROM core.resource_pools
WHERE org_id = $1 AND status = 'active'
ORDER BY pool_type ASC, name ASC;
-- name: ListResourcePoolsByOrgIDAnyStatus :many
-- Every pool row for the organization regardless of status -- unlike
-- GetResourcePoolsByOrgID's active-only filter, this does not hide a
-- suspended or archived pool from view. The org-detail composite uses
-- this for its pools panel so an operator sees a pool's actual status
-- (ux-honest-surfaces requirement: "pool status and usage are visible on
-- the organization view") instead of the pool silently vanishing from the
-- list, and so "this org has zero pool rows" (the pool-less breakage
-- case) is distinguishable from "this org's only pool exists but is not
-- active".
SELECT * FROM core.resource_pools
WHERE org_id = $1
ORDER BY pool_type ASC, name ASC;