aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-05-04 10:12:05 +0200
committerMario Vavti <mario@mariovavti.com>2017-05-04 10:12:05 +0200
commita92b9b7adb2be489106138b6269a5f7fe8eea5aa (patch)
treeabab4112741f5d28720185fe0308552de23f5e48 /install/schema_mysql.sql
parent263cfe2538a3e1a4e866c80b44ada158475cc792 (diff)
parentbc776a9534b57231b83f4c65fefdc3637db0e024 (diff)
downloadvolse-hubzilla-a92b9b7adb2be489106138b6269a5f7fe8eea5aa.tar.gz
volse-hubzilla-a92b9b7adb2be489106138b6269a5f7fe8eea5aa.tar.bz2
volse-hubzilla-a92b9b7adb2be489106138b6269a5f7fe8eea5aa.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index b64c1ae61..602f7ac2f 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -34,6 +34,7 @@ CREATE TABLE IF NOT EXISTS `abook` (
`abook_unconnected` tinyint(4) NOT NULL DEFAULT '0',
`abook_self` tinyint(4) NOT NULL DEFAULT '0',
`abook_feed` tinyint(4) NOT NULL DEFAULT '0',
+ `abook_not_here` tinyint(4) NOT NULL DEFAULT '0',
`abook_profile` char(64) NOT NULL DEFAULT '',
`abook_incl` TEXT NOT NULL DEFAULT '',
`abook_excl` TEXT NOT NULL DEFAULT '',
@@ -58,6 +59,7 @@ CREATE TABLE IF NOT EXISTS `abook` (
KEY `abook_pending` (`abook_pending`),
KEY `abook_unconnected` (`abook_unconnected`),
KEY `abook_self` (`abook_self`),
+ KEY `abook_not_here` (`abook_not_here`),
KEY `abook_feed` (`abook_feed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;