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.
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.
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 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 falsedate β Date and timejson β Structured data (JSON objects or arrays)id (a unique number for each row), created_at, and updated_at columns. You donβt need to add these yourself.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.