aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
diff options
context:
space:
mode:
authorMelanie2011-04-08 04:16:29 +0100
committerMelanie2011-04-08 04:16:29 +0100
commit738daadaceada157eb0a8ea4a3437e037859b4d2 (patch)
tree1d0f8d63180928d77a7842e73c56e922666af75b /OpenSim/Data/SQLiteLegacy/Resources/001_Avatar.sql
parentAdd support for the new display name related functions in LSL. This does not (diff)
parenttrivial whitespace removal to trigger a panda rebuild (diff)
downloadopensim-SC-738daadaceada157eb0a8ea4a3437e037859b4d2.zip
opensim-SC-738daadaceada157eb0a8ea4a3437e037859b4d2.tar.gz
opensim-SC-738daadaceada157eb0a8ea4a3437e037859b4d2.tar.bz2
opensim-SC-738daadaceada157eb0a8ea4a3437e037859b4d2.tar.xz
Merge branch 'master' into careminster-presence-refactor
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;