Database

Every organization comes with its own database, with nothing to set up. You get two: a Live one for your real data and a Test one to experiment in. You don’t need to know how databases work or write any code for them. You tell your coding AI what you want to store, and it takes care of the rest.

Connect it to your app

Want your app to save and read data? On the Database page, click Copy to grab a short guide (DATABASE.md), then paste it into your coding AI. The copied text already tells your AI what to do, so you don’t type anything. It wires your app up to the database for you. Nothing to configure by hand.

Tables & data

Your data lives in tables. Picture each one as a spreadsheet, with a row per record and a column for each detail (a name, a price, a date). Your AI creates the tables your app needs; you can browse and edit the data any time from the console.

Every table automatically gets an id (a unique number for each row) plus created_at and updated_at, so records are always easy to tell apart and you can see when each one changed.

Running SQL yourself

You never have to, because your AI writes the queries. But if you (or a developer on your team) want to look at the data directly, the database detail page has a Query tab for running SELECT, INSERT, UPDATE, and DELETE statements.