Created Windows Service

This commit is contained in:
Chase Tucker
2024-04-03 12:05:44 -07:00
parent 35690df362
commit 794b616293
14 changed files with 247 additions and 38 deletions

View File

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