How to update comments and constraints on Streaming Tables created by DLT outside the pipeline?

Nexusss7
Databricks Partner

I have a Delta Live Tables (DLT) pipeline that creates a streaming table (e.g., dbrtdflite_catalog.demotest_silver.customer_profile).
I want to update table-level and column-level comments as well as constraints on this table.

When I try commands like:
COMMENT ON TABLE dbrtdflite_catalog.demotest_silver.customer_profile IS 'Customer profile data';
I get an error:
[STREAMING_TABLE_OPERATION_NOT_ALLOWED.INVALID_ALTER] The operation COMMENT ON TABLE is not allowed: To alter the schema or properties of Streaming Tables, please use the CREATE OR REFRESH command.

Even I have tried updating constraints but seems it's not allowed.

My requirement is to update comments/constraints outside of the DLT pipeline (without modifying the pipeline code).

- Is there any supported way to do this for DLT-managed streaming tables?
-  Or is the only option to make these changes inside the DLT pipeline definition itself?

Thanks in advance for your help!