You are here

README.txt in User Relationships 6

User Relationship Defaults Module
---------------------------------
This is a plugin module for the User Relationships module.

It allows admins to set default relationships that are created between users when a new user joins.
Think of it like Tom from MySpace.

Send comments to Jeff Smick: http://drupal.org/user/107579/contact, or post an issue at
http://drupal.org/project/user_relationships.


Requirements
------------
Drupal 6
User Relationships Module


Installation
------------
Enable User Relationship Defaults in the "Site building -> modules" administration screen.


Database Schema
---------------
MySQL
=====

-- 
-- Table structure for table `user_relationship_defaults`
-- 
CREATE TABLE IF NOT EXISTS `user_relationship_defaults` (
  `rdid` int(10) unsigned NOT NULL default '0',
  `uid` int(10) unsigned NOT NULL default '0',
  `rtid` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`rdid`),
  KEY `uid` (`uid`),
  KEY `rtid` (`rtid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


Credits
-------
Written by Jeff Smick.
Written originally for and financially supported by OurChart Inc. (http://www.ourchart.com)
Thanks to the BuddyList module team for their inspiration

File

user_relationship_defaults/README.txt
View source
  1. User Relationship Defaults Module
  2. ---------------------------------
  3. This is a plugin module for the User Relationships module.
  4. It allows admins to set default relationships that are created between users when a new user joins.
  5. Think of it like Tom from MySpace.
  6. Send comments to Jeff Smick: http://drupal.org/user/107579/contact, or post an issue at
  7. http://drupal.org/project/user_relationships.
  8. Requirements
  9. ------------
  10. Drupal 6
  11. User Relationships Module
  12. Installation
  13. ------------
  14. Enable User Relationship Defaults in the "Site building -> modules" administration screen.
  15. Database Schema
  16. ---------------
  17. MySQL
  18. =====
  19. --
  20. -- Table structure for table `user_relationship_defaults`
  21. --
  22. CREATE TABLE IF NOT EXISTS `user_relationship_defaults` (
  23. `rdid` int(10) unsigned NOT NULL default '0',
  24. `uid` int(10) unsigned NOT NULL default '0',
  25. `rtid` int(10) unsigned NOT NULL default '0',
  26. PRIMARY KEY (`rdid`),
  27. KEY `uid` (`uid`),
  28. KEY `rtid` (`rtid`)
  29. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  30. Credits
  31. -------
  32. Written by Jeff Smick.
  33. Written originally for and financially supported by OurChart Inc. (http://www.ourchart.com)
  34. Thanks to the BuddyList module team for their inspiration