aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql
diff options
context:
space:
mode:
authorSean Dague2009-02-17 19:06:23 +0000
committerSean Dague2009-02-17 19:06:23 +0000
commitc417a5b619eb85706a1782c5b0943cb8b28bd7a1 (patch)
treef14981b650694cfc4271f84368a27f63979ff35e /OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql
parent* Allow inventory archives to be saved from the 'root' inventory directory (diff)
downloadopensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.zip
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.gz
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.bz2
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.xz
remove all the very old create and upgrade sql files, these were
outdated by migrations 6 months ago.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql')
-rw-r--r--OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql24
1 files changed, 0 insertions, 24 deletions
diff --git a/OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql b/OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql
deleted file mode 100644
index 3ef7bc9..0000000
--- a/OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql
+++ /dev/null
@@ -1,24 +0,0 @@
1SET FOREIGN_KEY_CHECKS=0;
2-- ----------------------------
3-- Table structure for agents
4-- ----------------------------
5CREATE TABLE `agents` (
6 `UUID` varchar(36) NOT NULL,
7 `sessionID` varchar(36) NOT NULL,
8 `secureSessionID` varchar(36) NOT NULL,
9 `agentIP` varchar(16) NOT NULL,
10 `agentPort` int(11) NOT NULL,
11 `agentOnline` tinyint(4) NOT NULL,
12 `loginTime` int(11) NOT NULL,
13 `logoutTime` int(11) NOT NULL,
14 `currentRegion` varchar(36) NOT NULL,
15 `currentHandle` bigint(20) unsigned NOT NULL,
16 `currentPos` varchar(64) NOT NULL,
17 PRIMARY KEY (`UUID`),
18 UNIQUE KEY `session` (`sessionID`),
19 UNIQUE KEY `ssession` (`secureSessionID`)
20) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1';
21
22-- ----------------------------
23-- Records
24-- ----------------------------