Add support to create new table in the database #769
Labels
enhancement
New feature or request
enterprise edition only
planned for only available in enterprise edition
Milestone
tableName: t_employee
description: Employee table
columns : [
{
name : 'id'
description: 'Id column'
type: 'string'
length: 30
pk: true
}
,
{
name : 'first_name'
type: 'string'
length: 30
nullable: false
}
,
{
name : 'age'
type: 'int'
defaultValue: 0
}
,
.....
]
The text was updated successfully, but these errors were encountered: