gkarlsson.features.15.1.1.source-code.hsql_tables.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of features Show documentation
Show all versions of features Show documentation
Show cases the different features of db-scheduler
The newest version!
create table scheduled_tasks (
task_name varchar(100),
task_instance varchar(100),
task_data blob,
execution_time TIMESTAMP WITH TIME ZONE,
picked BIT,
picked_by varchar(50),
last_success TIMESTAMP WITH TIME ZONE,
last_failure TIMESTAMP WITH TIME ZONE,
consecutive_failures INT,
last_heartbeat TIMESTAMP WITH TIME ZONE,
version BIGINT,
priority INT,
PRIMARY KEY (task_name, task_instance)
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy