aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie Thielker2016-04-28 17:15:08 +0200
committerMelanie Thielker2016-04-28 17:15:08 +0200
commit8ef34a1bc58a585d8044200d4d909b068e8b20ca (patch)
treea2a8bf7dac313bb69ea2238ec9b31229bc67b8ae /OpenSim/Data
parentReplace the "land show" method with the better one from 0.8. (diff)
downloadopensim-SC_OLD-8ef34a1bc58a585d8044200d4d909b068e8b20ca.zip
opensim-SC_OLD-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.gz
opensim-SC_OLD-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.bz2
opensim-SC_OLD-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.xz
Fix incorrect SQLite syntax in Migrations
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/SQLite/Resources/AgentPrefs.migrations2
1 files changed, 1 insertions, 1 deletions
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` (
11 `PermEveryone` INT(6) NOT NULL DEFAULT 0, 11 `PermEveryone` INT(6) NOT NULL DEFAULT 0,
12 `PermGroup` INT(6) NOT NULL DEFAULT 0, 12 `PermGroup` INT(6) NOT NULL DEFAULT 0,
13 `PermNextOwner` INT(6) NOT NULL DEFAULT 532480, 13 `PermNextOwner` INT(6) NOT NULL DEFAULT 532480,
14 UNIQUE KEY `PrincipalID` (`PrincipalID`), 14 UNIQUE (`PrincipalID`),
15 PRIMARY KEY(`PrincipalID`)); 15 PRIMARY KEY(`PrincipalID`));
16 16
17COMMIT; 17COMMIT;