aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-20 22:14:51 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-20 22:14:51 -0700
commit43fbbfe0dff1f2a51c0d6911a78bf8a3724dc752 (patch)
treeea0d596c1c970c234d75c30a250a92ce86b66493 /install/schema_mysql.sql
parent3e7a76cc6418b8ef589ec9de725821743a156484 (diff)
parent72bdca009c076023342c190c5e3dde6725cd9635 (diff)
downloadvolse-hubzilla-43fbbfe0dff1f2a51c0d6911a78bf8a3724dc752.tar.gz
volse-hubzilla-43fbbfe0dff1f2a51c0d6911a78bf8a3724dc752.tar.bz2
volse-hubzilla-43fbbfe0dff1f2a51c0d6911a78bf8a3724dc752.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
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 5b7d77a77..aaeab4f87 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -372,6 +372,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`),
@@ -384,7 +385,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;
CREATE TABLE IF NOT EXISTS `fcontact` (