diff options
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index 640edfbfd80..e535814b518 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -968,12 +968,29 @@ </field> <field> + <!-- timestamp when the job was executed the last time --> <name>last_run</name> <type>integer</type> <default></default> <notnull>false</notnull> </field> + <field> + <!-- timestamp when the job was checked if it needs execution the last time --> + <name>last_checked</name> + <type>integer</type> + <default></default> + <notnull>false</notnull> + </field> + + <field> + <!-- timestamp when the job was reserved the last time, 1 day timeout --> + <name>reserved_at</name> + <type>integer</type> + <default></default> + <notnull>false</notnull> + </field> + <index> <name>job_class_index</name> <field> |