aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-11-21 13:52:15 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-11-21 13:52:15 +0100
commitcb05e677a96e1312263c0a1c63ee10cea62268b1 (patch)
tree9234db8ab0c946ed65123181acba0df71524a8eb /database.sql
parenta86fd26bd86945fe75b7220e149b8986f88feb01 (diff)
parentaaedac8f574278fba89cd11d3d8f1adaeb6b030e (diff)
downloadvolse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.gz
volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.bz2
volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.zip
Merge remote-tracking branch 'friendica/master'
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`),