All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.V7__create_shedlock_table.sql Maven / Gradle / Ivy

The newest version!
create table if not exists shedlock
(
    name       varchar(64) not null
        constraint shedlock_pk primary key,
    lock_until timestamp(3),
    locked_at  timestamp(3),
    locked_by  varchar(255)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy