diff options
author | Justin Clark-Casey (justincc) | 2011-04-07 23:16:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-04-07 23:20:04 +0100 |
commit | 9d40c0dcc70462d78d6347676927b05eed245a9a (patch) | |
tree | 2f7fb8f320a93c15dde9e1bf7ef53d4999743601 /OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql | |
parent | Bundle a built-from-source Mac OS X sqlite3 universal dylib with OpenSim and ... (diff) | |
download | opensim-SC-9d40c0dcc70462d78d6347676927b05eed245a9a.zip opensim-SC-9d40c0dcc70462d78d6347676927b05eed245a9a.tar.gz opensim-SC-9d40c0dcc70462d78d6347676927b05eed245a9a.tar.bz2 opensim-SC-9d40c0dcc70462d78d6347676927b05eed245a9a.tar.xz |
Remove the SQLite legacy adaptor. This is no longer needed now that the main adaptor works on Mac OS X.
The SQLite legacy adapator was also not at all well maintained, even worse than the mainline sqlite adapator.
Diffstat (limited to 'OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql b/OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql deleted file mode 100644 index 468567d..0000000 --- a/OpenSim/Data/SQLiteLegacy/Resources/001_AuthStore.sql +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | CREATE TABLE auth ( | ||
4 | UUID char(36) NOT NULL, | ||
5 | passwordHash char(32) NOT NULL default '', | ||
6 | passwordSalt char(32) NOT NULL default '', | ||
7 | webLoginKey varchar(255) NOT NULL default '', | ||
8 | accountType VARCHAR(32) NOT NULL DEFAULT 'UserAccount', | ||
9 | PRIMARY KEY (`UUID`) | ||
10 | ); | ||
11 | |||
12 | CREATE TABLE tokens ( | ||
13 | UUID char(36) NOT NULL, | ||
14 | token varchar(255) NOT NULL, | ||
15 | validity datetime NOT NULL | ||
16 | ); | ||
17 | |||
18 | COMMIT; | ||