diff options
author | Sean Dague | 2009-02-17 19:06:23 +0000 |
---|---|---|
committer | Sean Dague | 2009-02-17 19:06:23 +0000 |
commit | c417a5b619eb85706a1782c5b0943cb8b28bd7a1 (patch) | |
tree | f14981b650694cfc4271f84368a27f63979ff35e /OpenSim/Data/MySQL/Resources/CreateAgentsTable.sql | |
parent | * Allow inventory archives to be saved from the 'root' inventory directory (diff) | |
download | opensim-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.sql | 24 |
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 @@ | |||
1 | SET FOREIGN_KEY_CHECKS=0; | ||
2 | -- ---------------------------- | ||
3 | -- Table structure for agents | ||
4 | -- ---------------------------- | ||
5 | CREATE 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 | -- ---------------------------- | ||