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/CreateUserFriendsTable.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/CreateUserFriendsTable.sql')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql | 11 |
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 @@ | |||
1 | SET FOREIGN_KEY_CHECKS=0; | ||
2 | -- ---------------------------- | ||
3 | -- Table structure for users | ||
4 | -- ---------------------------- | ||
5 | CREATE 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 | ||