mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Added SQlite connector for AvatarData. Tested -- works.
* Small bug fix in debug message * Set default standalone configs to use SQLite across the board
This commit is contained in:
9
OpenSim/Data/SQLite/Resources/001_Avatar.sql
Normal file
9
OpenSim/Data/SQLite/Resources/001_Avatar.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE Avatars (
|
||||
PrincipalID CHAR(36) NOT NULL,
|
||||
Name VARCHAR(32) NOT NULL,
|
||||
Value VARCHAR(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY(PrincipalID, Name));
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user