🗄️Data & Tables
6 min read
Creating Data Tables
Structure your app's data with custom tables and columns.
Data Tables are Mobiroller's built-in database. Think of them like a spreadsheet: rows are records, columns are fields. Your app's components read from and write to these tables.
Creating a Table
- 1Go to Data in the left sidebar
- 2Click New Table
- 3Give it a name (e.g. "Products")
- 4Add columns with names and types
- 5Click Save
Column Types
| Type | Use for | Example |
|---|---|---|
| Text | Short strings | Product name |
| Long Text | Paragraphs | Description |
| Number | Integers & decimals | Price, quantity |
| Boolean | True / false toggle | Is featured? |
| Date | Date values | Published date |
| Media | Single file upload | Product image |
| Select | Dropdown options | Status: active/inactive |
| Relation | Link to another table | Author → Users |
Draft & Publish
Tables can have a Draft/Publish toggle. Draft entries are only visible in the builder; Published entries are visible in your live app.
💡You can also let the AI create your data tables automatically. Just describe your data in the AI chat and it will set up the table structure for you.
Was this page helpful?