Managing Data
Database Studio provides a spreadsheet-like interface for browsing and editing data in your DataStore tables.
Browsing Rows
- Navigate to Database from the sidebar
- Click on a table name
- The table view shows all rows with pagination
You can:
- Sort by clicking column headers
- Paginate through large datasets using navigation controls
- View data types and values for each cell

Inserting Rows
- Open a table
- Click "+ Add Row" (or equivalent button)
- Fill in the field values for each column
- Save the new row
You can insert one row at a time through the UI. For bulk inserts, use the DataStore Insert node in a workflow.
Updating Rows
- Click on a row or cell you want to edit
- Modify the value
- Save the changes
Deleting Rows
- Select the row(s) you want to delete
- Click Delete
- Confirm the deletion
WARNING
Deleted rows cannot be recovered. Make sure you're deleting the correct records.
When to Use Database Studio vs Workflow Nodes
| Use Case | Recommended Approach |
|---|---|
| Quick manual edits | Database Studio |
| Bulk data operations | DataStore nodes in a workflow |
| Automated data pipelines | DataStore nodes with triggers |
| Schema changes | Database Studio |
| Ad-hoc queries | Database Studio or DataStore Query node |