file_type
- Last UpdatedNov 20, 2024
- 1 minute read
The file_type table defines file types based on the file’s extension.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
file_ext |
string20 |
Y |
N |
The file extension for the file type. |
|
file_desc |
string40 |
N |
Y |
The description for the file type. |
|
edit_level |
int32 |
N |
N |
The minimum user level required to edit a file of this type. |
|
view_level |
int32 |
N |
N |
The minimum user level required to view a file of this type. |
|
print_level |
int32 |
N |
N |
The minimum user level required to print a file of this type. |
|
edit_args |
string254 |
N |
Y |
The command line arguments for editing a file of this type. The default is null. |
|
view_args |
string254 |
N |
Y |
The command line arguments for viewing a file of this type. The default is null. |
|
print_args |
string254 |
N |
Y |
The command line arguments for printing a file of this type. The default is null. |
|
last_edit_comment |
string254 |
N |
Y |
Reserved for internal use to indicate why this record was changed. |
|
last_edit_by |
string40 |
N |
Y |
Who last changed this record. |
|
last_edit_at |
tdatetime |
N |
N |
When this record was last changed. |
|
row_id |
ID 1 |
N |
N |
Unique row identifier, for audit trail. |