aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-16 17:17:34 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-16 17:17:34 -0700
commitb3b566c907f3e48d0522fcd75c0a9ee9f988030c (patch)
tree4397896bea2dcfac9c87c93cba4f04d93d963c3b /install/schema_mysql.sql
parent1d4dc7e27c6ca88110cdba0297c31bdb12079cbf (diff)
downloadvolse-hubzilla-b3b566c907f3e48d0522fcd75c0a9ee9f988030c.tar.gz
volse-hubzilla-b3b566c907f3e48d0522fcd75c0a9ee9f988030c.tar.bz2
volse-hubzilla-b3b566c907f3e48d0522fcd75c0a9ee9f988030c.zip
add DB support for tasks, todo items and repeating events
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 4d0da366f..ef52bcbec 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -432,6 +432,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`),
@@ -442,7 +446,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;
-- --------------------------------------------------------