From 8ef34a1bc58a585d8044200d4d909b068e8b20ca Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Thu, 28 Apr 2016 17:15:08 +0200 Subject: Fix incorrect SQLite syntax in Migrations --- OpenSim/Data/SQLite/Resources/AgentPrefs.migrations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Data/SQLite/Resources/AgentPrefs.migrations b/OpenSim/Data/SQLite/Resources/AgentPrefs.migrations index 7e0525d..8c2663e 100644 --- a/OpenSim/Data/SQLite/Resources/AgentPrefs.migrations +++ b/OpenSim/Data/SQLite/Resources/AgentPrefs.migrations @@ -11,7 +11,7 @@ CREATE TABLE `AgentPrefs` ( `PermEveryone` INT(6) NOT NULL DEFAULT 0, `PermGroup` INT(6) NOT NULL DEFAULT 0, `PermNextOwner` INT(6) NOT NULL DEFAULT 532480, - UNIQUE KEY `PrincipalID` (`PrincipalID`), + UNIQUE (`PrincipalID`), PRIMARY KEY(`PrincipalID`)); COMMIT; -- cgit v1.1