Database – Scheduled Action Entity (scheduled_action_entity)
Holds information for scheduled actions.
Column | Data Type | Column Info | Value Notes | Other |
id | int(11) | The id of the entity | ||
uuid | text | UUID | ||
series_id | text | series id | ||
trigger_key | text | trigger key | ||
ui_state | text | ui state | ||
user_id | int(11) | ID of the associated agent user | ||
receiver_id | text | receiver id | ||
job_name | varchar(100) | job name | ||
cron | varchar(50) | cron code | ||
start_time | int(11) | start time | ||
schedule | text | schedule | ||
data | text | data | ||
type | varchar(100) | action type | ||
active | tinyint(1) | Whether or not the entity is active | 1 - yes, 0 - no | |
last_execution | timestamp | last execution timestamp | ||
execution_count | bigint(11) | number of times executed | ||
deleted | tinyint(1) | Whether or not the entity was deleted | 1 - yes, 0 - no | |
created | timestamp | Timestamp of when the entity was created | ||
lastUpdated | timestamp | Timestamp of when the entity was last updated |