diff options
author | MW | 2007-08-11 20:20:33 +0000 |
---|---|---|
committer | MW | 2007-08-11 20:20:33 +0000 |
commit | 822881eac543646af96a78b14f83fb326563a5e6 (patch) | |
tree | 04dbf3e2f3a357bd6c189df57e7d1245fab3c7fe /share/sql | |
parent | A attempt to fix the user manager db4o crash bug (where you have to delete us... (diff) | |
download | opensim-SC-822881eac543646af96a78b14f83fb326563a5e6.zip opensim-SC-822881eac543646af96a78b14f83fb326563a5e6.tar.gz opensim-SC-822881eac543646af96a78b14f83fb326563a5e6.tar.bz2 opensim-SC-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/sql')
-rw-r--r-- | share/sql/sqlite3-prims.sql | 1 |
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), |