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 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, |