diff options
author | Diva Canto | 2010-01-16 08:32:32 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-16 08:32:32 -0800 |
commit | 5ce12c92d976fa32c076689bb3f937d8a8d60dc0 (patch) | |
tree | a986422d6f338b7797e5848c0012a52afcbb9eda /OpenSim/Data/MySQL | |
parent | Moved prim crossing to EntityTransferModule. Not complete yet. (diff) | |
download | opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.zip opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.gz opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.bz2 opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.xz |
Fixed a missing field in the last regions table migration.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/007_GridStore.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/007_GridStore.sql b/OpenSim/Data/MySQL/Resources/007_GridStore.sql index 3f88d3d..dbec584 100644 --- a/OpenSim/Data/MySQL/Resources/007_GridStore.sql +++ b/OpenSim/Data/MySQL/Resources/007_GridStore.sql | |||
@@ -1,6 +1,7 @@ | |||
1 | BEGIN; | 1 | BEGIN; |
2 | 2 | ||
3 | ALTER TABLE `regions` ADD COLUMN `PrincipalID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | 3 | ALTER TABLE `regions` ADD COLUMN `PrincipalID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; |
4 | ALTER TABLE `regions` ADD COLUMN `Token` varchar(255) NOT NULL; | ||
4 | 5 | ||
5 | COMMIT; | 6 | COMMIT; |
6 | 7 | ||