Skip to content

What are tables

A table is where your app’s data lives. Think of it like one sheet in a spreadsheet: every row is a record, and every column has a type that decides what can go in it.

A recipe app might have a Recipes table with columns for name (text), prep time (number), and category (a select). Each recipe you add is one record in that table.

Keep going

  • Column types — every field type and when to reach for it.
  • Relationships — link records across tables, like an expense that points to its category.