diff options
author | Melanie | 2009-12-28 18:52:24 +0000 |
---|---|---|
committer | Melanie | 2009-12-28 18:52:24 +0000 |
commit | 397a29649203513a4ef24c04e06aace43e02b367 (patch) | |
tree | dfc798d48784c7dc8aa771813cb10e3d8fd3bc5f /OpenSim/Data/MySQL/Resources | |
parent | Forgot the migration file (diff) | |
download | opensim-SC_OLD-397a29649203513a4ef24c04e06aace43e02b367.zip opensim-SC_OLD-397a29649203513a4ef24c04e06aace43e02b367.tar.gz opensim-SC_OLD-397a29649203513a4ef24c04e06aace43e02b367.tar.bz2 opensim-SC_OLD-397a29649203513a4ef24c04e06aace43e02b367.tar.xz |
Add the migration for friends and guard the presence Report function
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/001_Friends.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/001_Friends.sql b/OpenSim/Data/MySQL/Resources/001_Friends.sql new file mode 100644 index 0000000..e158a2c --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/001_Friends.sql | |||
@@ -0,0 +1,9 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | CREATE TABLE `Friends` ( | ||
4 | `PrincipalID` CHAR(36) NOT NULL, | ||
5 | `FriendID` VARCHAR(255) NOT NULL, | ||
6 | `Flags` CHAR(16) NOT NULL DEFAULT '0' | ||
7 | ) ENGINE=InnoDB; | ||
8 | |||
9 | COMMIT; | ||