Create Table

Introduction

The "Create Table" step is used to define and create a new table in the database with a specified name, optional description, and schema structure. This step is essential for managing dynamic database requirements.

Configuration

  • Name: Specifies the name of the table. This parameter is required.

  • Description: Provides an optional description of the table.

  • Schema: Defines the structure of the table as a list of keys. Each key must adhere to database-compatible data types and is required.

Outputs

  • Table: Outputs the created table as an object variable. The object includes the schema used for the table.

Last updated