aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.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/CreateUserFriendsTable.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 '')
-rw-r--r--OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql b/OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql
deleted file mode 100644
index 8480d48..0000000
--- a/OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql
+++ /dev/null
@@ -1,11 +0,0 @@
1SET FOREIGN_KEY_CHECKS=0;
2-- ----------------------------
3-- Table structure for users
4-- ----------------------------
5CREATE TABLE `userfriends` (
6 `ownerID` VARCHAR(37) NOT NULL,
7 `friendID` VARCHAR(37) NOT NULL,
8 `friendPerms` INT NOT NULL,
9 `datetimestamp` INT NOT NULL,
10 UNIQUE KEY (`ownerID`, `friendID`)
11) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev.1'; \ No newline at end of file