Bug fix: UserAccounts in SQLite was missing the primary key constraint.

slimupdates
Diva Canto 2010-04-16 17:43:15 -07:00
parent 930d374525
commit 2597a3406c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
-- useraccounts table
CREATE TABLE UserAccounts (
PrincipalID CHAR(36) NOT NULL,
PrincipalID CHAR(36) primary key,
ScopeID CHAR(36) NOT NULL,
FirstName VARCHAR(64) NOT NULL,
LastName VARCHAR(64) NOT NULL,