d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
48 lines
1.2 KiB
SQL
48 lines
1.2 KiB
SQL
-- Backfill user_stats for any users missing a stats row
|
|
-- Uses defaults from schema for limits and counters
|
|
|
|
INSERT INTO "user_stats" (
|
|
"id",
|
|
"user_id",
|
|
"current_usage_limit",
|
|
"usage_limit_updated_at",
|
|
"total_manual_executions",
|
|
"total_api_calls",
|
|
"total_webhook_triggers",
|
|
"total_scheduled_executions",
|
|
"total_chat_executions",
|
|
"total_tokens_used",
|
|
"total_cost",
|
|
"current_period_cost",
|
|
"last_period_cost",
|
|
"total_copilot_cost",
|
|
"total_copilot_tokens",
|
|
"total_copilot_calls",
|
|
"last_active",
|
|
"billing_blocked"
|
|
)
|
|
SELECT
|
|
u."id" AS id,
|
|
u."id" AS user_id,
|
|
NULL::decimal AS current_usage_limit,
|
|
NOW() AS usage_limit_updated_at,
|
|
0 AS total_manual_executions,
|
|
0 AS total_api_calls,
|
|
0 AS total_webhook_triggers,
|
|
0 AS total_scheduled_executions,
|
|
0 AS total_chat_executions,
|
|
0 AS total_tokens_used,
|
|
'0'::decimal AS total_cost,
|
|
'0'::decimal AS current_period_cost,
|
|
'0'::decimal AS last_period_cost,
|
|
'0'::decimal AS total_copilot_cost,
|
|
0 AS total_copilot_tokens,
|
|
0 AS total_copilot_calls,
|
|
NOW() AS last_active,
|
|
FALSE AS billing_blocked
|
|
FROM "user" u
|
|
LEFT JOIN "user_stats" s ON s."user_id" = u."id"
|
|
WHERE s."user_id" IS NULL;
|
|
|
|
|