aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorHaakon Meland Eriksen <haakon.eriksen@far.no>2015-08-19 19:40:18 +0200
committerHaakon Meland Eriksen <haakon.eriksen@far.no>2015-08-19 19:40:18 +0200
commite50e68719155c7d35e30bb203a403854f789d5a1 (patch)
treea10630cec177c6629fb0da38d96deb7258062698 /install/schema_mysql.sql
parent07cd0c870f48ec838c23fa7c6966ceb1c41f06ab (diff)
parent4e3d295c909405da61d7ccd6c7bd99bd35c9feec (diff)
downloadvolse-hubzilla-e50e68719155c7d35e30bb203a403854f789d5a1.tar.gz
volse-hubzilla-e50e68719155c7d35e30bb203a403854f789d5a1.tar.bz2
volse-hubzilla-e50e68719155c7d35e30bb203a403854f789d5a1.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql9
1 files changed, 8 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index b1d59a0f5..5b7d77a77 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -367,6 +367,11 @@ CREATE TABLE IF NOT EXISTS `event` (
`allow_gid` mediumtext NOT NULL,
`deny_cid` mediumtext NOT NULL,
`deny_gid` mediumtext NOT NULL,
+ `event_status` char(255) NOT NULL DEFAULT '',
+ `event_status_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ `event_percent` smallint(6) NOT NULL DEFAULT '0',
+ `event_repeat` text NOT NULL,
+ `event_sequence` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `type` (`type`),
@@ -377,7 +382,9 @@ CREATE TABLE IF NOT EXISTS `event` (
KEY `ignore` (`ignore`),
KEY `aid` (`aid`),
KEY `event_hash` (`event_hash`),
- KEY `event_xchan` (`event_xchan`)
+ KEY `event_xchan` (`event_xchan`),
+ KEY `event_status` (`event_status`),
+ KEY `event_sequence` (`event_sequence`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `fcontact` (