Preview and Production hold different data
The toggle at the top of the tab is the most important control on the page.- Preview is your testing data — whatever your bot recorded while you were trying things out.
- Production is your real data — actual customers, actual bookings.
In Production you’ll see a Data only badge. That means you can’t change the shape of the database there — no new tables, no new columns, no dropping anything. Those changes belong in Preview, and reach Production when you deploy. You can still fix the rows in your own tables.
Browsing and editing
Select a table to see its rows, 50 at a time. From there:- Edit a value — double-click a cell (or tap it on a phone).
- Add or delete a row — Add Row, or the bin icon on a row.
- Clear a table — Clear empties every row but keeps the table itself.
- Filter — narrow rows by a column using equals, not equals, contains, greater than, or less than.
- Change the shape — New Table, Add Column, and Drop Table, in Preview only.
System tables
Three tables come with every project and are managed by Paige: your contacts, conversations, and messages. They carry a System badge, and selecting one shows a warning — for good reason. Your bot’s execution logs live in the database too, but they’re deliberately kept out of this tab — read them in Logs instead, which is built for them.Downloading a table
Click Download on any table and pick CSV, Excel, or JSON. The switch inside the dropdown decides how much you get:- Full table (the default) — every row, ignoring whatever filter you have on screen.
- Current view — only the rows matching your filter, in the order you’re looking at them.
bookings_2026-07-17.csv. Large tables are prepared in the background and download on their own when they’re ready, so you don’t need to wait around on the page.
The SQL editor
Click SQL in the top-right for a query box. This is the tool for questions the browser can’t answer — “how many bookings came in per day last week”, “which contacts never finished the signup flow”.Read-only by default
The editor won’t change anything until you turn on the Write toggle. Try anUPDATE without it and you’ll be told to enable Write rather than have it run.
With Write on, an amber banner appears and you can run anything — INSERT, UPDATE, DELETE, and schema changes, including on the system tables the point-and-click view protects.
