Fixed typo in UsersDatabase schema definition.

This commit is contained in:
Dario Solera 2009-10-06 14:23:30 +00:00
parent eb2a6a860e
commit 84618e26e7

View file

@ -6,7 +6,7 @@ create table [User] (
[Email] varchar(100) not null,
[Active] bit not null,
[DateTime] datetime not null,
constraint [PK_User] primary key clustered ([USername])
constraint [PK_User] primary key clustered ([Username])
)
create table [UserGroup] (