Skip to content

Instantly share code, notes, and snippets.

@benjaminvanrenterghem
Created July 22, 2022 20:01
Show Gist options
  • Save benjaminvanrenterghem/80cf991eaf69ce78a6e4fa06c2bedb9c to your computer and use it in GitHub Desktop.
Save benjaminvanrenterghem/80cf991eaf69ce78a6e4fa06c2bedb9c to your computer and use it in GitHub Desktop.
Demo_user_credentials______ASP_NET_API_Tutorial
USE BVRNET;
INSERT INTO [BVRNET].[dbo].[User] (DisplayName, LoginName, Email, Password, ClearanceLevels, Deleted, CreatedDate, UpdatedDate)
VALUES ('u1d', 'u1login', 'user@test.com', '04b7bcd583850fa5fe5ad6a9109e7a93db5d7a8330ba815041b1afdda8bf1ea3', 'User', 0, GETDATE(), GETDATE()),
('u2d', 'u2login', 'admin@test.com', '951351844714e596b29aa9c894bdb6e17f441fbcd77760c4596c59c64ac47222', 'User,Management', 0, GETDATE(), GETDATE());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment