updated db definition to use UUID as linking
parent
a56a17fab2
commit
2e496aeed7
|
@ -52,8 +52,8 @@ create index prims_ownerid on prims(OwnerID);
|
||||||
create index prims_lastownerid on prims(LastOwnerID);
|
create index prims_lastownerid on prims(LastOwnerID);
|
||||||
|
|
||||||
create table primshapes (
|
create table primshapes (
|
||||||
id integer primary key autoincrement,
|
-- The same UUID as prim, just to keep them easily linked
|
||||||
prim_id integer not null,
|
UUID varchar(36) primary key not null,
|
||||||
-- Shape is an enum
|
-- Shape is an enum
|
||||||
Shape integer,
|
Shape integer,
|
||||||
-- vectors (converted from LLVector3)
|
-- vectors (converted from LLVector3)
|
||||||
|
|
Loading…
Reference in New Issue