mirror of
https://github.com/friendica/friendica
synced 2025-04-26 17:10:10 +00:00
Poco: New fields for last contact and last failure of a contact.
This commit is contained in:
parent
5b96c7b3e3
commit
54a5a80b24
6 changed files with 139 additions and 15 deletions
|
@ -630,6 +630,8 @@ function db_definition() {
|
|||
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
|
||||
"last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
|
||||
"last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
|
||||
"location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"about" => array("type" => "text", "not null" => "1"),
|
||||
"keywords" => array("type" => "text", "not null" => "1"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue