app:table:delete
Removes a table from a schema 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 to delete |
Outputs
| Name | Type | Description |
|---|---|---|
table | string | The name of the deleted table |
Example
name: Delete a table
actions:
- name: deleted
component: app:table:delete
vars:
org_id: "{{ var.org_id }}"
schema_id: content
table: articles