Usage
In your app manifest.json, you can define extra columns for a table by adding aextra_columns property like this:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
extra_columns property like this:
...
"extra_columns": [
{
"kind": "user",
"columns": [
{
"name": "appx_myapp_column1",
"type": "varchar",
"size": 128,
"is_required": false,
"description": "Example of extra column in the 'user' table"
}
]
}
]
...