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

@@ -1182,3 +1182,16 @@ BEGIN TRANSACTION;
ALTER TABLE prims ADD "RotationAxisLocks" smallint NOT NULL DEFAULT (0);
COMMIT;
:VERSION 44 #---- add baked terrain store
BEGIN TRANSACTION;
CREATE TABLE bakedterrain
(
"RegionUUID" uuid NULL,
"Revision" int NULL,
"Heightfield" bytea NULL
);
COMMIT;