diff options
author | Andrew Manning <tamanning@zoho.com> | 2017-01-29 20:02:34 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2017-01-29 20:02:34 -0500 |
commit | b58d56826bf9fd74a70a25848113c80baeeb8dfc (patch) | |
tree | 17b98611cb4af1ffc0dc4b85c0d173b0231b9f9f /install/schema_mysql.sql | |
parent | e770768b790f2441ef5371910568ff3bf6680dab (diff) | |
parent | dbf7ff979122ea0f8877e9ae4b16590f280593ef (diff) | |
download | volse-hubzilla-b58d56826bf9fd74a70a25848113c80baeeb8dfc.tar.gz volse-hubzilla-b58d56826bf9fd74a70a25848113c80baeeb8dfc.tar.bz2 volse-hubzilla-b58d56826bf9fd74a70a25848113c80baeeb8dfc.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.sql | 2 |
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`) |