aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-11-18 21:55:00 -0800
committerfriendica <info@friendica.com>2011-11-18 21:55:00 -0800
commitd53db63d41d2f253c9aff806d9830167c9dd7a8d (patch)
tree66adeb7eae8ba08bc1eecf89f5d351e0052bf726 /database.sql
parentfa4742e6eec1850f1bb53e38379cf2aac650cc3b (diff)
downloadvolse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.tar.gz
volse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.tar.bz2
volse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.zip
forum split delivery 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 924cc49b2..98067d8d6 100644
--- a/database.sql
+++ b/database.sql
@@ -226,6 +226,7 @@ CREATE TABLE IF NOT EXISTS `item` (
`unseen` tinyint(1) NOT NULL DEFAULT '1',
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`origin` tinyint(1) NOT NULL DEFAULT '0',
+ `forum_mode` tinyint(1) NOT NULL DEFAULT '0',
`last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `guid` (`guid`),
@@ -244,6 +245,7 @@ CREATE TABLE IF NOT EXISTS `item` (
KEY `starred` (`starred`),
KEY `deleted` (`deleted`),
KEY `origin` (`origin`),
+ KEY `forum_mode` (`forum_mode`),
KEY `last-child` (`last-child`),
KEY `unseen` (`unseen`),
KEY `wall` (`wall`),