Skip to content

featurebyte.TableColumn.update_description

update_description(
description: Optional[str]
)

Description

Update description of a column in the table.

Parameters

  • description: Optional[str]
    The description of the column.

Examples

Update description of column "GroceryInvoiceGuid" of the target event table

>>> event_table = catalog.get_table("GROCERYINVOICE")
>>> event_table["GroceryInvoiceGuid"].update_description("Invoice ID")