mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-04-29 17:44:26 +02:00
* Fix typos in database schema
* Default to using user's main email address * Refactoring * Add missing files to .tgz
This commit is contained in:
parent
fa35dfe69d
commit
9fceabe1c3
5 changed files with 69 additions and 65 deletions
|
@ -4,10 +4,10 @@ CREATE TABLE IF NOT EXISTS `mailstream_item` (
|
|||
`contact-id` int(11) NOT NULL,
|
||||
`uri` char(255) NOT NULL,
|
||||
`message-id` char(255) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT now()',
|
||||
`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 COLLATION=utf8_bin;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue