aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/sql/sqlite3-prims.sql
diff options
context:
space:
mode:
authorSean Dague2007-08-09 14:32:04 +0000
committerSean Dague2007-08-09 14:32:04 +0000
commit2e496aeed709d9fa9fff1f5af5b1ef6dd488b7d8 (patch)
tree9e58aba5d91b9d3f846faa0d8297d734b0e20724 /share/sql/sqlite3-prims.sql
parentMaking sure my local working copy is in sync with svn before I start the job ... (diff)
downloadopensim-SC_OLD-2e496aeed709d9fa9fff1f5af5b1ef6dd488b7d8.zip
opensim-SC_OLD-2e496aeed709d9fa9fff1f5af5b1ef6dd488b7d8.tar.gz
opensim-SC_OLD-2e496aeed709d9fa9fff1f5af5b1ef6dd488b7d8.tar.bz2
opensim-SC_OLD-2e496aeed709d9fa9fff1f5af5b1ef6dd488b7d8.tar.xz
updated db definition to use UUID as linking
Diffstat (limited to '')
-rw-r--r--share/sql/sqlite3-prims.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/sql/sqlite3-prims.sql b/share/sql/sqlite3-prims.sql
index ef6ef5a..c6c3999 100644
--- a/share/sql/sqlite3-prims.sql
+++ b/share/sql/sqlite3-prims.sql
@@ -52,8 +52,8 @@ create index prims_ownerid on prims(OwnerID);
52create index prims_lastownerid on prims(LastOwnerID); 52create index prims_lastownerid on prims(LastOwnerID);
53 53
54create table primshapes ( 54create table primshapes (
55 id integer primary key autoincrement, 55 -- The same UUID as prim, just to keep them easily linked
56 prim_id integer not null, 56 UUID varchar(36) primary key not null,
57 -- Shape is an enum 57 -- Shape is an enum
58 Shape integer, 58 Shape integer,
59 -- vectors (converted from LLVector3) 59 -- vectors (converted from LLVector3)