mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 18:04:26 +02:00
Add mailstream plugin
This commit is contained in:
parent
950154d655
commit
d32b43feb8
7 changed files with 3131 additions and 0 deletions
13
mailstream/database.sql
Normal file
13
mailstream/database.sql
Normal file
|
@ -0,0 +1,13 @@
|
|||
CREATE TABLE IF NOT EXISTS `mailstream_item` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`uid` int(11) NOT NULL,
|
||||
`contact-id` int(11) NOT NULL,
|
||||
`uri` char(255) NOT NULL,
|
||||
`message-id` char(255) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT now()',
|
||||
`completed` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `message-id` (`message-id`),
|
||||
KEY `created` (`created`),
|
||||
KEY `completed` (`completed`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
Loading…
Add table
Add a link
Reference in a new issue