mirror of
https://github.com/tiennm99/llmapikey.git
synced 2026-07-19 20:18:06 +00:00
- Next.js 15 App Router (JS+JSDoc): landing, auth-gated dashboard, docs - GitHub OAuth via Supabase; identity anchored on numeric provider_id - key provisioning: reserve-then-mint-persist-compensate, one key per account - api_keys in unexposed llmapikey schema via direct Postgres; RLS deny-all - live minting gated behind PROVISIONING_ENABLED; Vercel auto-deploy disabled - unit tests (mask, request-body), RLS deny-all test, reconcile script
5 lines
219 B
SQL
5 lines
219 B
SQL
-- Rollback for 0001. Vercel rollback does NOT revert the database — run this
|
|
-- manually against the same DB if the migration must be undone.
|
|
drop table if exists llmapikey.api_keys;
|
|
drop schema if exists llmapikey;
|