aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2017-01-29 19:53:41 -0500
committerAndrew Manning <tamanning@zoho.com>2017-01-29 19:53:41 -0500
commitf8918604087af97a9e416ba2a8503920f8b08186 (patch)
tree1332a4686c05f9a659f0b3aeb6acc51948921720 /install/schema_mysql.sql
parent3424c7dc878ecf5b1f1c021737e3d7eba2443299 (diff)
parentdbf7ff979122ea0f8877e9ae4b16590f280593ef (diff)
downloadvolse-hubzilla-f8918604087af97a9e416ba2a8503920f8b08186.tar.gz
volse-hubzilla-f8918604087af97a9e416ba2a8503920f8b08186.tar.bz2
volse-hubzilla-f8918604087af97a9e416ba2a8503920f8b08186.zip
Merge remote-tracking branch 'upstream/dev' into affinity-settings
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 bd7d9d79c..be5317722 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -898,6 +898,7 @@ CREATE TABLE IF NOT EXISTS `outq` (
`outq_delivered` tinyint(1) NOT NULL DEFAULT '0',
`outq_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`outq_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+ `outq_scheduled` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`outq_notify` mediumtext NOT NULL,
`outq_msg` mediumtext NOT NULL,
`outq_priority` smallint(6) NOT NULL DEFAULT '0',
@@ -907,6 +908,7 @@ CREATE TABLE IF NOT EXISTS `outq` (
KEY `outq_hub` (`outq_posturl`),
KEY `outq_created` (`outq_created`),
KEY `outq_updated` (`outq_updated`),
+ KEY `outq_scheduled` (`outq_scheduled`),
KEY `outq_async` (`outq_async`),
KEY `outq_delivered` (`outq_delivered`),
KEY `outq_priority` (`outq_priority`)