Skip to content

Instantly share code, notes, and snippets.

View jeremyiverson's full-sized avatar

Jeremy jeremyiverson

  • Colectica
  • Minneapolis, MN
View GitHub Profile
CREATE TABLE webpages_Membership (
UserId INT NOT NULL,
CreateDate TIMESTAMP NULL,
ConfirmationToken VARCHAR (128) NULL,
IsConfirmed BIT DEFAULT (('0')) NULL,
LastPasswordFailureDate TIMESTAMP NULL,
PasswordFailuresSinceLastSuccess INT DEFAULT ((0)) NOT NULL,
Password VARCHAR (128) NOT NULL,
PasswordChangedDate TIMESTAMP NULL,
PasswordSalt VARCHAR (128) NOT NULL,