mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Bug fix: UserAccounts in SQLite was missing the primary key constraint.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user