Skip to content

Instantly share code, notes, and snippets.

@devonuto
Created November 7, 2016 20:30
Show Gist options
  • Save devonuto/181fae5d30475c264e0e6d2e3c30f0f4 to your computer and use it in GitHub Desktop.
Save devonuto/181fae5d30475c264e0e6d2e3c30f0f4 to your computer and use it in GitHub Desktop.
Create credentials database
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