aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-04-30 21:37:31 +0100
committerJustin Clark-Casey (justincc)2010-04-30 21:37:31 +0100
commit8966ed9c82c8199bf0da61815d04d485d67aa34a (patch)
tree9e23144ffa4f38a2608572d731c40d72e44108b2 /OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
parentFix a bunch of issues that crop up after the naive porting of the new sqlite ... (diff)
downloadopensim-SC_OLD-8966ed9c82c8199bf0da61815d04d485d67aa34a.zip
opensim-SC_OLD-8966ed9c82c8199bf0da61815d04d485d67aa34a.tar.gz
opensim-SC_OLD-8966ed9c82c8199bf0da61815d04d485d67aa34a.tar.bz2
opensim-SC_OLD-8966ed9c82c8199bf0da61815d04d485d67aa34a.tar.xz
fix an issue with user appearance where the new sqlite db adapter expects directly specification of byte[] type rather than base64 strings
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql9
1 files changed, 0 insertions, 9 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql b/OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
deleted file mode 100644
index 7ec906b..0000000
--- a/OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
+++ /dev/null
@@ -1,9 +0,0 @@
1BEGIN TRANSACTION;
2
3CREATE TABLE Avatars (
4 PrincipalID CHAR(36) NOT NULL,
5 Name VARCHAR(32) NOT NULL,
6 Value VARCHAR(255) NOT NULL DEFAULT '',
7 PRIMARY KEY(PrincipalID, Name));
8
9COMMIT;