aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-16 19:13:29 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-16 19:13:29 -0700
commit6a1d1867f0dccccaf567c689a701e62c7f3a9a6d (patch)
tree34de8cca5a9b1d24681f65310638b5e5f7e0f7b9 /install/schema_mysql.sql
parent18bc12c21ceb6f8c4c92aefea41afa2c235500a8 (diff)
parentb3b566c907f3e48d0522fcd75c0a9ee9f988030c (diff)
downloadvolse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.tar.gz
volse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.tar.bz2
volse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql7
1 files changed, 6 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index b1d59a0f5..879ba0b88 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -367,6 +367,10 @@ 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,
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `type` (`type`),
@@ -377,7 +381,8 @@ 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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `fcontact` (