Get started

Databases

Databases

Every organization comes with its own database β€” no setup needed. Create tables to store your data, and manage everything from the console or through your coding AI.

Connecting with DATABASE.md

Want your app to use the database? Just copy or download DATABASE.md from the Databases page and give it to your coding AI. It has everything your AI needs to connect your app to the database.

  1. Go to Databases and click Copy or Download.
  2. Paste it into your coding AI and say:
Read DATABASE.md and integrate the database into this project.

Your AI reads the guide and connects your app to the database automatically. No manual setup needed.

Tables

Tables organize your data into rows and columns. Each column has a type:

  • string β€” Short text (up to 512 characters)
  • text β€” Long text (unlimited length)
  • integer β€” Whole numbers (1, 2, 3, ...)
  • float β€” Decimal numbers (3.14, 9.99, ...)
  • boolean β€” True or false
  • date β€” Date and time
  • json β€” Structured data (JSON objects or arrays)
Every table automatically includes id (a unique number for each row), created_at, and updated_at columns. You don’t need to add these yourself.

Querying

Run SQL queries directly from the console using the Query tab in the database detail page. You can use SELECT, INSERT, UPDATE, and DELETE statements.