Creator
The creator field saves the user ID of the record creator
Description
| Item | Content |
|---|---|
| Category | Static Field |
| Sortable | Yes |
| Filterable | Yes |
| Supported Filter Types | Equal, Not Equal, Empty, Not Empty, Less Than, Greater Than, Less Than or Equal, Greater Than or Equal, Within Range, Not Within Range, In List, Not In List |
Database Storage Format
| Field Type | Description |
|---|---|
| varchar(128) | Variable-length string, maximum 128 characters |
The creator saves the user's ID. When querying records through automation or scripts, the user's Name and Avatar will also be returned. Assuming the field identifier is cuser, the returned structure is as follows
json
{
"cuser": "userid",
"cuser_name": "User Name",
"cuser_avatar": "pic1.png"
}Note
If data already exists in the table and then the creator field is added, the creator field of this original data is null. If you need to update this data, you need to call the script function
javascript
informat.table.update()
//Or
informat.table.updateList()Display Style

Display Effect


