Created ExpiredOOOStatusWorker

This commit is contained in:
Chase Tucker
2024-03-25 12:22:26 -07:00
parent 27f78da969
commit 69fdd98ab3
46 changed files with 549 additions and 5118 deletions

View File

@ -7,8 +7,10 @@ create table UserSubRole (
Delegated integer default 0
);
insert into UserSubRole (UserID, SubRoleID)
values (15, 1),
(34, 19),
(2, 5),
(19, 3);
insert into UserSubRole (UserID, SubRoleID, Delegated)
values (15, 1, 0),
(34, 19, 0),
(2, 5, 0),
(19, 3, 0),
(3, 5, 1),
(4, 2, 1);