-
Notifications
You must be signed in to change notification settings - Fork 16
pacx column add file
github-actions[bot] edited this page Aug 10, 2026
·
2 revisions
Creates a file column.
# Creates a simple file column
pacx column add file -t tableName -n columnName
# specifies the max allowed size in KB (10 MB)
pacx column add file -t tableName -n columnName --maxSizeInKB 10240
pacx column add file -t tableName -n columnName -maxKb 10240
| Long Name | Short Name | Required? | Description | Default value | Valid values |
|---|---|---|---|---|---|
table |
t |
Y | The name of the entity for which you want to create an attribute | - | String |
name |
n |
Y | The display name of the attribute. | - | String |
schemaName |
sn |
N | The schema name of the attribute. If not specified, is deducted from the display name | - | String |
description |
d |
N | The description of the attribute. | - | String |
requiredLevel |
r |
N | The required level of the attribute. | - | None, SystemRequired, ApplicationRequired, Recommended |
audit |
a |
N | Indicates whether the attribute is enabled for auditing (default: true). | - | true, false |
maxSizeInKB |
maxKb |
N | For File or Image type columns indicates the maximum size in KB for the column. Do not provide a value if you want to stay with the default (32Mb for file columns, 10Mb for image columns). The value must be lower than 10485760 (1Gb) for file columns, and lower than 30720 (30Mb) for image columns. | - | Int32 |
solution |
s |
N | The name of the unmanaged solution to which you want to add this attribute. | - | String |