aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share
diff options
context:
space:
mode:
authorMW2007-08-11 20:20:33 +0000
committerMW2007-08-11 20:20:33 +0000
commit822881eac543646af96a78b14f83fb326563a5e6 (patch)
tree04dbf3e2f3a357bd6c189df57e7d1245fab3c7fe /share
parentA attempt to fix the user manager db4o crash bug (where you have to delete us... (diff)
downloadopensim-SC_OLD-822881eac543646af96a78b14f83fb326563a5e6.zip
opensim-SC_OLD-822881eac543646af96a78b14f83fb326563a5e6.tar.gz
opensim-SC_OLD-822881eac543646af96a78b14f83fb326563a5e6.tar.bz2
opensim-SC_OLD-822881eac543646af96a78b14f83fb326563a5e6.tar.xz
Added a new column (SceneGroupID) to sqlite3 table (sqlite3-prims.sql) so that we can tell what prims belong to the same SceneObjectGroup. If sdague has a different method in mind when he gets back then he can change it then.
Diffstat (limited to 'share')
-rw-r--r--share/sql/sqlite3-prims.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/sql/sqlite3-prims.sql b/share/sql/sqlite3-prims.sql
index 8cea8e0..5680c15 100644
--- a/share/sql/sqlite3-prims.sql
+++ b/share/sql/sqlite3-prims.sql
@@ -12,6 +12,7 @@ create table prims (
12 ParentID integer default 0, -- this.ParentID 12 ParentID integer default 0, -- this.ParentID
13 CreationDate integer, -- this.CreationDate 13 CreationDate integer, -- this.CreationDate
14 Name varchar(256), 14 Name varchar(256),
15 SceneGroupID char(36),
15 -- various text fields 16 -- various text fields
16 Text varchar(256), 17 Text varchar(256),
17 Description varchar(256), 18 Description varchar(256),