Table Management
💡 This guide explains how to create tables and manage data from the console. Tables can only be created via the console or MCP tools.
Overview
Use the Database menu to create, browse, and delete tables. Table creation and management is done through the console UI or MCP Table Management Tools. Only data CRUD operations are available via the REST API.
Viewing the Table List
Click Database in the project-level sidebar.
View all tables in the current environment.

Table Name
Table identifier
Status
deployed / deploying / updating / failed
Rows
Number of stored records
Updated
Last modified date
💡 System tables (accounts, sessions, users, files) are created automatically and cannot be edited or deleted.
Creating a Table
Click the Create Table button.
Enter a table name (e.g.,
posts).Click Create.
Add columns in the Schema Editor.
Request in natural language from your AI tool.
The MCP tool will automatically create the table and add the columns.

💡 When you create a table, the id, createdAt, and updatedAt fields are added automatically.
Table Detail Page
Click a table in the table list to open the detail page. The detail page has the following tabs.

Data
Browse, search, and paginate stored records
Schema
View and edit column definitions
Indexes
Manage indexes for query performance
Permissions
Configure RBAC permissions per role
API Docs
View auto-generated REST API documentation for this table

Deleting a Table
🚨 Danger — Deleting a table permanently removes all its data. This action cannot be undone.
Click the menu on the table you want to delete in the table list.
Select Delete.
Enter the table name and click Confirm Delete.
Next Steps
Schema Editor — Add, modify, and delete columns
Index Management — Improve query performance with indexes
Database Overview — CRUD data via the REST API
MCP Table Management Tools — Manage tables with AI tools
Last updated