delete_dataverse_column
Remove unwanted columns from Dataverse tables to clean up database schema and eliminate unnecessary data storage.
Instructions
Permanently deletes a column from a Dataverse table. WARNING: This action cannot be undone and will remove all data stored in this column. Use with extreme caution and only for columns that are no longer needed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityLogicalName | Yes | Logical name of the table | |
logicalName | Yes | Logical name of the column to delete |
Input Schema (JSON Schema)
{
"properties": {
"entityLogicalName": {
"description": "Logical name of the table",
"type": "string"
},
"logicalName": {
"description": "Logical name of the column to delete",
"type": "string"
}
},
"required": [
"entityLogicalName",
"logicalName"
],
"type": "object"
}