Define a dictionary override for an inherited column.
Use to modify properties of a column inherited from a parent table
an object that can include all OverrideColumnType properties
OverrideColumnType
https://docs.servicenow.com/csh?topicname=table-api-now-ts.html&version=latest
// Make priority mandatory in incident tableexport const incident = Table({ name: 'incident', extends: 'task', schema: { priority: OverrideColumn({ baseTable: 'task', mandatory: true, }), },}) Copy
// Make priority mandatory in incident tableexport const incident = Table({ name: 'incident', extends: 'task', schema: { priority: OverrideColumn({ baseTable: 'task', mandatory: true, }), },})
Define a dictionary override for an inherited column.
Use to modify properties of a column inherited from a parent table