Actions
User Story #95
closed
JJ
NN
Backend unit test implementation
User Story #95:
Backend unit test implementation
Start date:
11/08/2025
Due date:
11/16/2025
% Done:
0%
Estimated time:
Actions
Added by Justin Jia 15 days ago. Updated 2 days ago.
0%
@Justin Jia DDL for new table about shedlock:
create table shedlock (
name varchar(64) not null,
lock_until timestamp(3) not null,
locked_at timestamp(3) not null,
locked_by varchar(255) not null,
primary key (name)
);
create index idx_shedlock_lock_until on shedlock(lock_until);