aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-19 16:51:15 -0800
committerfriendica <info@friendica.com>2012-11-19 16:51:15 -0800
commit194ef02c287edbce6b797f1411afe0bb964e8c80 (patch)
treecfb80e3bc0cb356952e2ac8d1320d1cb72ff5fd3 /install/database.sql
parentdb77309bc399669c5c98f4fac99f2d5f96cfbaeb (diff)
downloadvolse-hubzilla-194ef02c287edbce6b797f1411afe0bb964e8c80.tar.gz
volse-hubzilla-194ef02c287edbce6b797f1411afe0bb964e8c80.tar.bz2
volse-hubzilla-194ef02c287edbce6b797f1411afe0bb964e8c80.zip
DATABASE: outq additions, delivery now getting the notify across to the other side
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql
index c1746455d..7ab8625db 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -675,6 +675,8 @@ CREATE TABLE IF NOT EXISTS `outq` (
`outq_account` int(10) unsigned NOT NULL DEFAULT '0',
`outq_channel` int(10) unsigned NOT NULL DEFAULT '0',
`outq_posturl` char(255) NOT NULL DEFAULT '',
+ `outq_async` tinyint(1) NOT NULL DEFAULT '0',
+ `outq_delivered` tinyint(1) NOT NULL DEFAULT '0',
`outq_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`outq_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`outq_notify` mediumtext NOT NULL,
@@ -684,7 +686,9 @@ CREATE TABLE IF NOT EXISTS `outq` (
KEY `outq_channel` (`outq_channel`),
KEY `outq_hub` (`outq_posturl`),
KEY `outq_created` (`outq_created`),
- KEY `outq_updated` (`outq_updated`)
+ KEY `outq_updated` (`outq_updated`),
+ KEY `outq_async` (`outq_async`),
+ KEY `outq_delivered` (`outq_delivered`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `pconfig` (