Tables
Tables are only available on relational databases.
Create a table
Open a database → click New Table:
- Set the table name
- Add columns — each column has:
| Field | Description |
|---|---|
| Name | Column identifier |
| Type | INT, BIGINT, VARCHAR, TEXT, FLOAT, BOOLEAN, DATE, DATETIME |
| Length | Only for VARCHAR (default 255) |
| PK | Primary key — only one per table |
| Nullable | Whether NULL is allowed |
| Unique | Enforces unique constraint |
| Auto-increment | Auto-increments on insert (use with INT PK) |
| Default | Optional default value |
Best practice
Always include an id INT PK AUTO_INCREMENT column — Celdrax pre-fills it for you.
View table schema
Click the chevron on any table card to expand and see all columns with their types and constraints.
Drop a table
Click the trash icon on the table row. Irreversible — all data in the table is lost.