diff options
author | friendica <info@friendica.com> | 2014-08-27 19:15:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-27 19:15:34 -0700 |
commit | eb27bea794d5aff547be9722f7c058678b8cbb1d (patch) | |
tree | 6d305b1c17d0af06e0002b487a1873ba4932f396 /install/database.sql | |
parent | bbcf0be16a2140069fe2826c57bb0c7278f7cb52 (diff) | |
download | volse-hubzilla-eb27bea794d5aff547be9722f7c058678b8cbb1d.tar.gz volse-hubzilla-eb27bea794d5aff547be9722f7c058678b8cbb1d.tar.bz2 volse-hubzilla-eb27bea794d5aff547be9722f7c058678b8cbb1d.zip |
mind numbing drudgery continued...
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 7f6a128c9..acf59a36d 100644 --- a/install/database.sql +++ b/install/database.sql @@ -615,6 +615,7 @@ CREATE TABLE IF NOT EXISTS `likes` ( CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `convid` int(10) unsigned NOT NULL DEFAULT '0', `mail_flags` int(10) unsigned NOT NULL DEFAULT '0', `from_xchan` char(255) NOT NULL DEFAULT '', `to_xchan` char(255) NOT NULL DEFAULT '', @@ -628,6 +629,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), + KEY `convid` (`convid`), KEY `created` (`created`), KEY `mail_flags` (`mail_flags`), KEY `account_id` (`account_id`), |