object db indexes

This commit is contained in:
NatureFreshMilk 2019-01-23 08:23:33 +01:00
parent 042d17ae23
commit ac0e0ff94d

View File

@ -21,6 +21,9 @@ create table if not exists objects(
mtime bigint
);
create index if not exists objects_pos on objects(posx,posy,posz);
create index if not exists objects_pos_type on objects(posx,posy,posz,type);
create table if not exists tiles(
data blob,
mtime bigint,