Created
November 7, 2016 20:30
-
-
Save devonuto/181fae5d30475c264e0e6d2e3c30f0f4 to your computer and use it in GitHub Desktop.
Create credentials database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE [dbo].[bank_creds] ( | |
[access_no] INT NOT NULL, | |
[security_no] INT NOT NULL, | |
[password] NCHAR (128) NOT NULL, | |
[salt] NCHAR (12) NOT NULL, | |
PRIMARY KEY CLUSTERED ([access_no] ASC) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment