Add GridStore migration for MSSQL.

This is done blind since I don't use MSSQL.  If this doesn't work, then one will have to wait for it to be updated for the 0.7.3 opensim release.
iar_mods
Justin Clark-Casey (justincc) 2012-02-14 02:02:11 +00:00
parent 04986bbb15
commit 0b17a66e68
1 changed files with 8 additions and 0 deletions

View File

@ -235,4 +235,12 @@ CREATE NONCLUSTERED INDEX IX_regions_name ON dbo.regions
regionName
) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
COMMIT
:VERSION 9
BEGIN TRANSACTION
ALTER TABLE regions ADD COLUMN parcelMapTexture VarChar(36) null
COMMIT