diff options
author | friendica <info@friendica.com> | 2013-03-05 21:00:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-05 21:00:25 -0800 |
commit | 4062be28699eb5fba93ff43ffb4d3e9ed7c4af6c (patch) | |
tree | 0b5a625703008a7dd7c4dda2590b6585b3380384 /install/database.sql | |
parent | fbda9ababc76c103d82118a8f3cf24e619bfb80d (diff) | |
download | volse-hubzilla-4062be28699eb5fba93ff43ffb4d3e9ed7c4af6c.tar.gz volse-hubzilla-4062be28699eb5fba93ff43ffb4d3e9ed7c4af6c.tar.bz2 volse-hubzilla-4062be28699eb5fba93ff43ffb4d3e9ed7c4af6c.zip |
basic friend suggestions (but not "new to the network and have no friends at all" suggestions)
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 31c5b441a..0262bce63 100644 --- a/install/database.sql +++ b/install/database.sql @@ -909,6 +909,15 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_connurl` (`xchan_connurl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `xign` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `xchan` (`xchan`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xlink_xchan` char(255) NOT NULL DEFAULT '', |