FabApprovalWorkerService
.config
Clients
Models
Properties
Services
SetupScripts
CreateApprovalTable.sql
CreateECNTable.sql
CreateOOODelegatedRolesTable.sql
CreateOOOTempTable.sql
CreateTECNNotificationUsersTable.sql
CreateTrainingTables.sql
CreateUserSubRoleTable.sql
CreateUserTable.sql
SetupDb.bat
Workers
FabApprovalWorkerService.csproj
FabApprovalWorkerService.csproj.user
Program.cs
appsettings.Development.json
appsettings.json
nLog.Development.config
nLog.Staging.config
nLog.config
FabApprovalWorkerServiceTests
.editorconfig
.gitignore
FabApprovalWorkerService.sln
README.md
azure-pipelines.yml
9 lines
209 B
SQL
9 lines
209 B
SQL
drop table if exists TECNNotificationsUsers;
|
|
|
|
create table TECNNotificationsUsers (
|
|
Id integer primary key,
|
|
UserId integer not null
|
|
);
|
|
|
|
insert into TECNNotificationsUsers (UserId)
|
|
values (1), (2), (3); |