Native Database
Build with confidence: every app gets a production-grade Postgres database out of the box. No setup, no glue code - just store, query, and ship.
What you get
Built-in Postgres for your app (serverless, production-grade).
Agent-assisted schema & migrations - describe the data you need; the agent can design tables and write migrations.
Users & Data viewer to inspect tables and rows directly in the UI.
Typical tasks
Create tables fast: tell the agent, e.g. “Add
customers{name, email, phone} andorders{total, status, customer_id} with FK.” It will propose a schema and migrations.Query & CRUD: read/write in your backend; list records for dashboards; update statuses; delete test data.
Peek & debug: open Users & Data to sanity-check what your app is persisting.
How to use (quick)
Open Users & Data to see current tables.
Ask the agent to add/adjust schema (it generates migrations), then run.
Wire backend endpoints to read/write your tables.
Verify in Users & Data and your app UI.
Good patterns
Keep writes server-side; the backend owns DB access.
Evolve with small, reversible migrations; commit messages should say what changed and why.
Log identifiers, not PII, when debugging.
FAQ
Last updated
Was this helpful?