app:field:delete
Removes a field from a table and applies the migration
Options
| Name | Type | Description |
|---|---|---|
org_id | string | The organization ID that owns the schema |
schema_id | string | The name of the schema (database) that contains the table |
table | string | The name of the table that contains the field |
field | string | The name of the field to delete |
Outputs
| Name | Type | Description |
|---|---|---|
field | string | The name of the deleted field |
Example
name: Remove a field from a table
actions:
- name: removed
component: app:field:delete
vars:
org_id: "{{ var.org_id }}"
schema_id: content
table: articles
field: summary