aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-27 16:46:28 -0700
committerfriendica <info@friendica.com>2012-04-27 16:46:28 -0700
commit0ab6b60a52fc27d8a37917b3b3e25de37c8fd372 (patch)
tree7e700c291de2dca1555d02f36ed6c565e5652751 /database.sql
parentecc4962bd1455d4ded6570f6d08ccab7e838fe8b (diff)
downloadvolse-hubzilla-0ab6b60a52fc27d8a37917b3b3e25de37c8fd372.tar.gz
volse-hubzilla-0ab6b60a52fc27d8a37917b3b3e25de37c8fd372.tar.bz2
volse-hubzilla-0ab6b60a52fc27d8a37917b3b3e25de37c8fd372.zip
archive contact flag
Diffstat (limited to 'database.sql')
-rw-r--r--database.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/database.sql b/database.sql
index eadb53cc6..78b26922b 100644
--- a/database.sql
+++ b/database.sql
@@ -172,6 +172,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
`writable` tinyint(1) NOT NULL DEFAULT '0',
`forum` tinyint(1) NOT NULL DEFAULT '0',
`hidden` tinyint(1) NOT NULL DEFAULT '0',
+ `archive` tinyint(1) NOT NULL DEFAULT '0',
`pending` tinyint(1) NOT NULL DEFAULT '1',
`rating` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-5 reputation, 0 unknown, 1 call police, 5 inscrutable',
`reason` text NOT NULL COMMENT 'why a rating was given - will help friends decide to make friends or not',
@@ -197,6 +198,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
KEY `nurl` (`nurl`),
KEY `pending` (`pending`),
KEY `hidden` (`hidden`),
+ KEY `archive` (`archive`),
KEY `forum` (`forum`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;