Created scripts for testing TECN workers

This commit is contained in:
Chase Tucker
2024-03-29 16:36:57 -07:00
parent fd23214ef7
commit 35690df362
4 changed files with 75 additions and 47 deletions

View File

@ -0,0 +1,9 @@
drop table if exists TECNNotificationUsers;
create table TECNNotificationUsers (
Id integer primary key,
UserId integer not null
);
insert into TECNNotificationUsers (UserId)
values (1), (2), (3);