Create Row
The Create Row step allows you to create a row in a table.
Sending data as an object
By default, the expected format is an object that represents the row to be created. The object keys are the column names and the values are the values to be inserted.
This object will be sent to the server and converted to an INSERT
statement, for example:
Unset fields will be presented as undefined and will not be used in the INSERT
statement - the table defaults will be applied instead.
You can always adjust the data before sending it.
Adding additional values
The created_at
column must exist in the table schema, otherwise it will not be sent.
Changing values
Deleting unnecessary values
or:
Joining array values
Using default values
Sending data field by field
You can also send the data field by field by clicking the JS button on the right of the Configure Row section. This way, you'll switch to the UI mode where you can specify each column separately.
Specify default values:
Trim spaces:
Last updated
Was this helpful?