Files
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
fab-approval-worker-service/FabApprovalWorkerService/SetupScripts/CreateTECNNotificationUsersTable.sql
2024-04-03 12:05:44 -07:00

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);