mirror of
https://github.com/opensim/opensim.git
synced 2026-08-19 04:32:07 +08:00
Duplicate OpenSim.Data.SQLite into OpenSim.Data.SQLiteNG. SQLiteNG will shortly be changed to work under mono 2.6 and above
This commit is contained in:
20
OpenSim/Data/SQLiteNG/Resources/006_UserStore.sql
Normal file
20
OpenSim/Data/SQLiteNG/Resources/006_UserStore.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
-- usersagents table
|
||||
CREATE TABLE IF NOT EXISTS useragents(
|
||||
UUID varchar(255) primary key,
|
||||
agentIP varchar(255),
|
||||
agentPort integer,
|
||||
agentOnline boolean,
|
||||
sessionID varchar(255),
|
||||
secureSessionID varchar(255),
|
||||
regionID varchar(255),
|
||||
loginTime integer,
|
||||
logoutTime integer,
|
||||
currentRegion varchar(255),
|
||||
currentHandle varchar(255),
|
||||
currentPosX float,
|
||||
currentPosY float,
|
||||
currentPosZ float);
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user