db.migration.V7__create_shedlock_table.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of homeautomation-spring-core Show documentation
Show all versions of homeautomation-spring-core Show documentation
HomeAutomation Spring implementation of the Core
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