Skip to content

Commit

Permalink
Missing BEGIN for MatOvrd migration in primshapes. It fails and the m…
Browse files Browse the repository at this point in the history
…igration code continues on. If The mgrations table says its done through 65 in RegionStore you will likely have to apply this manually.
  • Loading branch information
mdickson committed May 9, 2024
1 parent aec9a82 commit 0e42fc7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions OpenSim/Data/MySQL/Resources/RegionStore.migrations
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,10 @@ BEGIN;
ALTER TABLE `land` ADD COLUMN `environment` MEDIUMTEXT default NULL;
COMMIT;

:VERSION 64 #----- material overrides
ALTER TABLE `primshapes` ADD COLUMN `MatOvrd` blob default NULL;
COMMIT;
:VERSION 64 #----- material overrides
BEGIN;
ALTER TABLE `primshapes` ADD COLUMN `MatOvrd` blob default NULL;
COMMIT;

:VERSION 65 #----- add linkset data storage column
BEGIN;
Expand Down

0 comments on commit 0e42fc7

Please sign in to comment.