Default Behaviour
If no column mapping is configured, all columns are synced with their original names. The destination table has the same column names as the source.From Column and To Column
Each mapping has a from column (source) and to column (destination). You can:- Rename — Map user_id to userId (snake_case to camelCase).
- Select — Include only specific columns. Columns not in the mapping are excluded.
- Reorder — The order of mappings can affect column order in the destination.
Example Mappings
Snake case to camel case
| From Column | To Column |
|---|---|
| order_id | orderId |
| created_at | createdAt |
| total_amount | totalAmount |
Subset of columns
| From Column | To Column |
|---|---|
| id | id |
| status | status |
| total | total |