Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | 
|---|---|---|---|---|---|---|---|---|
| id | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    ||
| component | VARCHAR | 255 | 
                                         | 
                                    
                                         | 
                                    The component this scheduled task belongs to.  | 
                                |||
| classname | VARCHAR | 255 | 
                                         | 
                                    
                                         | 
                                    The class extending scheduled_task to be called when running this task.  | 
                                |||
| lastruntime | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    ||
| nextruntime | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    ||
| minute | VARCHAR | 200 | 
                                         | 
                                    
                                         | 
                                    ||||
| hour | VARCHAR | 70 | 
                                         | 
                                    
                                         | 
                                    ||||
| day | VARCHAR | 90 | 
                                         | 
                                    
                                         | 
                                    ||||
| month | VARCHAR | 30 | 
                                         | 
                                    
                                         | 
                                    ||||
| dayofweek | VARCHAR | 25 | 
                                         | 
                                    
                                         | 
                                    ||||
| faildelay | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    ||
| customised | TINYINT | 3 | 0 | 
                                         | 
                                    
                                         | 
                                    Used on upgrades to prevent overwriting custom schedules.  | 
                                ||
| disabled | BIT | 1 | 0 | 
                                         | 
                                    
                                         | 
                                    1 means do not run from cron  | 
                                ||
| timestarted | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    Time when the task was started  | 
                                |
| hostname | VARCHAR | 255 | √ | null | 
                                         | 
                                    
                                         | 
                                    Hostname where the task is running  | 
                                |
| pid | BIGINT | 19 | √ | null | 
                                         | 
                                    
                                         | 
                                    PHP process ID that is running the task  | 
                                
Indexes
| Constraint Name | Type | Sort | Column(s) | 
|---|---|---|---|
| PRIMARY | Primary key | Asc | id | 
| tasksche_cla_uix | Must be unique | Asc | classname |