mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 04:05:16 +02:00
add closeness attribute
This commit is contained in:
parent
86c0eac27d
commit
c0c0f2dc15
4 changed files with 11 additions and 5 deletions
|
@ -96,6 +96,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
|||
`pending` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`rating` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`reason` text NOT NULL,
|
||||
`closeness` tinyint(2) NOT NULL DEFAULT '99',
|
||||
`info` mediumtext NOT NULL,
|
||||
`profile-id` int(11) NOT NULL DEFAULT '0',
|
||||
`bdyear` CHAR( 4 ) NOT NULL COMMENT 'birthday notify flag',
|
||||
|
@ -116,7 +117,8 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
|||
KEY `blocked` (`blocked`),
|
||||
KEY `readonly` (`readonly`),
|
||||
KEY `hidden` (`hidden`),
|
||||
KEY `pending` (`pending`)
|
||||
KEY `pending` (`pending`),
|
||||
KEY `closeness` (`closeness`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue