diff options
author | Melanie Thielker | 2016-04-28 17:15:08 +0200 |
---|---|---|
committer | Melanie Thielker | 2016-04-28 17:15:08 +0200 |
commit | 8ef34a1bc58a585d8044200d4d909b068e8b20ca (patch) | |
tree | a2a8bf7dac313bb69ea2238ec9b31229bc67b8ae | |
parent | Replace the "land show" method with the better one from 0.8. (diff) | |
download | opensim-SC-8ef34a1bc58a585d8044200d4d909b068e8b20ca.zip opensim-SC-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.gz opensim-SC-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.bz2 opensim-SC-8ef34a1bc58a585d8044200d4d909b068e8b20ca.tar.xz |
Fix incorrect SQLite syntax in Migrations
-rw-r--r-- | OpenSim/Data/SQLite/Resources/AgentPrefs.migrations | 2 |
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 | ||
17 | COMMIT; | 17 | COMMIT; |