Skip to main content
Every Vybe app comes with its own PostgreSQL database, and you can connect external databases from your existing infrastructure. The AI manages your schema, writes queries, and builds data-driven interfaces — all from your descriptions.

How data works in Vybe

When you create a new app, Vybe automatically provisions a dedicated PostgreSQL database powered by Neon. As you describe what your app should do, the AI creates tables, defines relationships, and writes the queries your app needs. You never need to write SQL or manage migrations manually. The AI handles it all based on your prompts:
Create a project tracker with tasks, assignees, due dates, and status columns. Each task should belong to a project, and projects should have a team lead.
The AI will create the projects and tasks tables, set up foreign keys, and build the UI to display and edit the data.

The Data tab

The Data tab in the app editor gives you a visual interface for exploring and managing your app’s database. It includes:
FeatureDescription
Schema diagramAn interactive ERD (Entity Relationship Diagram) showing all tables, columns, and relationships
Table browserView rows in any table, with sorting and filtering
Inline editingAdd, edit, and delete rows directly from the browser
The Data tab reflects the current state of your database in real time. Any changes the AI makes — creating a table, adding a column, inserting seed data — appear immediately.

Database categories

Vybe supports two categories of databases:

Data queries

Beyond the built-in and external databases, Vybe lets you create data queries — reusable, named queries that you save once and reference across multiple apps. Data queries can run against:
  • Connected external databases (SQL queries)
  • Connected integration services (API queries)
Saved queries are scoped to your organization, so any team member can use them. This is especially useful for complex queries that multiple apps need. Learn more about Data Queries

What’s next