add to databases a table to store baked terrain.

This commit is contained in:
UbitUmarov
2016-09-17 15:45:11 +01:00
parent 0cdad0faf4
commit 3f9f105295
11 changed files with 208 additions and 13 deletions

View File

@@ -352,3 +352,14 @@ BEGIN;
ALTER TABLE prims ADD COLUMN `RotationAxisLocks` tinyint(4) NOT NULL default '0';
COMMIT;
:VERSION 34 #---- add baked terrain store
BEGIN;
CREATE TABLE IF NOT EXISTS bakedterrain(
RegionUUID varchar(255),
Revision integer,
Heightfield blob);
COMMIT;