mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
whole lot more moving
This commit is contained in:
11
OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql
Normal file
11
OpenSim/Data/MySQL/Resources/CreateUserFriendsTable.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for users
|
||||
-- ----------------------------
|
||||
CREATE TABLE `userfriends` (
|
||||
`ownerID` VARCHAR(37) NOT NULL,
|
||||
`friendID` VARCHAR(37) NOT NULL,
|
||||
`friendPerms` INT NOT NULL,
|
||||
`datetimestamp` INT NOT NULL,
|
||||
UNIQUE KEY (`ownerID`, `friendID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev.1';
|
||||
Reference in New Issue
Block a user