aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-20 22:13:25 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-20 22:13:25 -0700
commitfef93af0a6908fdcb8d829229de8717acfc7ed81 (patch)
treea81d88a1acc853b1a3419e0949babfa8182144a8 /install/schema_mysql.sql
parentc96f121d4189e758392fb7796f7d87f37597cc78 (diff)
downloadvolse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.tar.gz
volse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.tar.bz2
volse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.zip
missed this one - it's required
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 3e0e88535..e3b9413f5 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -437,6 +437,7 @@ CREATE TABLE IF NOT EXISTS `event` (
`event_percent` smallint(6) NOT NULL DEFAULT '0',
`event_repeat` text NOT NULL,
`event_sequence` smallint(6) NOT NULL DEFAULT '0',
+ `event_priority` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `type` (`type`),
@@ -449,7 +450,8 @@ CREATE TABLE IF NOT EXISTS `event` (
KEY `event_hash` (`event_hash`),
KEY `event_xchan` (`event_xchan`),
KEY `event_status` (`event_status`),
- KEY `event_sequence` (`event_sequence`)
+ KEY `event_sequence` (`event_sequence`),
+ KEY `event_priority` (`event_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------