Skip to main content
Column mapping lets you rename source columns to different names in the destination table and select only specific columns to sync rather than all columns.

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 ColumnTo Column
order_idorderId
created_atcreatedAt
total_amounttotalAmount

Subset of columns

From ColumnTo Column
idid
statusstatus
totaltotal
Only id, status, and total are synced. Other columns are excluded.