diff options
author | AlexRa | 2010-05-06 22:44:57 +0300 |
---|---|---|
committer | AlexRa | 2010-05-18 22:16:10 +0300 |
commit | 6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9 (patch) | |
tree | d9a809d417ed531fbde0f041156b449d4030708a /OpenSim/Data/SQLite/Resources/001_UserStore.sql | |
parent | Converted MySQL migration history to the new format (diff) | |
download | opensim-SC-6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9.zip opensim-SC-6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9.tar.gz opensim-SC-6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9.tar.bz2 opensim-SC-6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9.tar.xz |
Migrations for SQLite converted to new format
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/001_UserStore.sql | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/OpenSim/Data/SQLite/Resources/001_UserStore.sql b/OpenSim/Data/SQLite/Resources/001_UserStore.sql deleted file mode 100644 index b584594..0000000 --- a/OpenSim/Data/SQLite/Resources/001_UserStore.sql +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | -- users table | ||
4 | CREATE TABLE users( | ||
5 | UUID varchar(255) primary key, | ||
6 | username varchar(255), | ||
7 | surname varchar(255), | ||
8 | passwordHash varchar(255), | ||
9 | passwordSalt varchar(255), | ||
10 | homeRegionX integer, | ||
11 | homeRegionY integer, | ||
12 | homeLocationX float, | ||
13 | homeLocationY float, | ||
14 | homeLocationZ float, | ||
15 | homeLookAtX float, | ||
16 | homeLookAtY float, | ||
17 | homeLookAtZ float, | ||
18 | created integer, | ||
19 | lastLogin integer, | ||
20 | rootInventoryFolderID varchar(255), | ||
21 | userInventoryURI varchar(255), | ||
22 | userAssetURI varchar(255), | ||
23 | profileCanDoMask integer, | ||
24 | profileWantDoMask integer, | ||
25 | profileAboutText varchar(255), | ||
26 | profileFirstText varchar(255), | ||
27 | profileImage varchar(255), | ||
28 | profileFirstImage varchar(255), | ||
29 | webLoginKey text default '00000000-0000-0000-0000-000000000000'); | ||
30 | -- friends table | ||
31 | CREATE TABLE userfriends( | ||
32 | ownerID varchar(255), | ||
33 | friendID varchar(255), | ||
34 | friendPerms integer, | ||
35 | ownerPerms integer, | ||
36 | datetimestamp integer); | ||
37 | |||
38 | COMMIT; | ||
39 | |||