Database
acme-prod (eu-west-1)· To200's AI can monitor and edit this database
Read-only
Tables
4
Total rows
81k
across all tables
RLS coverage
3/4
1 table unprotected
Tables
| Column | Type | Nullable |
|---|---|---|
| id | uuid | no |
| user_id | uuid | no |
| total_cents | int4 | no |
| coupon_code | text | yes |
| status | text | no |
| created_at | timestamptz | no |
AI-proposed migrations
1 awaitingDatabase writes are turned off in Autonomy settings. Enable them to apply migrations.
Index products.stock for the inventory fix
The transactional decrement in TO-137 filters on stock; an index avoids a full scan under load.
create index concurrently if not exists products_stock_idx on public.products (stock);
Proposed by To200 AI · 2h agoDB writes are disabled in Autonomy settings