-
-
Save nemanja947/54be4e654eb06d1ac0fddf2a12e21abb to your computer and use it in GitHub Desktop.
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].[AspNetUsers] ( | |
[Id] NVARCHAR (450) NOT NULL, | |
[UserName] NVARCHAR (256) NULL, | |
[Ime] NVARCHAR (30) NULL, | |
[Prezime] NVARCHAR (30) NULL, | |
[NormalizedUserName] NVARCHAR (256) NULL, | |
[Email] NVARCHAR (256) NULL, | |
[NormalizedEmail] NVARCHAR (256) NULL, | |
[EmailConfirmed] BIT NOT NULL, | |
[PasswordHash] NVARCHAR (MAX) NULL, | |
[SecurityStamp] NVARCHAR (MAX) NULL, | |
[ConcurrencyStamp] NVARCHAR (MAX) NULL, | |
[PhoneNumber] NVARCHAR (MAX) NULL, | |
[PhoneNumberConfirmed] BIT NOT NULL, | |
[TwoFactorEnabled] BIT NOT NULL, | |
[LockoutEnd] DATETIMEOFFSET (7) NULL, | |
[LockoutEnabled] BIT NOT NULL, | |
[AccessFailedCount] INT NOT NULL, | |
CONSTRAINT [PK_AspNetUsers] PRIMARY KEY CLUSTERED ([Id] ASC) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment