2018-10-21 07:56:58 +02:00
< ? php
2020-02-09 16:34:23 +01:00
/**
2021-03-29 08:40:20 +02:00
* @ copyright Copyright ( C ) 2010 - 2021 , the Friendica project
2020-02-09 16:34:23 +01:00
*
* @ license GNU AGPL version 3 or any later version
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation , either version 3 of the
* License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*
* Main database structure configuration file .
2018-10-21 07:56:58 +02:00
*
* Here are described all the tables , fields and indexes Friendica needs to work .
2020-11-18 00:45:16 +01:00
* The entry order is mostly alphabetic - with the exception of tables that are used in foreign keys .
2018-10-21 07:56:58 +02:00
*
* Syntax ( braces indicate optionale values ) :
* " <table name> " => [
* " comment " => " Description of the table " ,
* " fields " => [
* " <field name> " => [
* " type " => " <field type> { (<field size>)} <unsigned> " ,
* " not null " => 0 | 1 ,
* { " extra " => " auto_increment " ,}
* { " default " => " <default value> " ,}
* { " default " => NULL_DATE ,} ( for datetime fields )
* { " primary " => " 1 " ,}
2020-05-10 16:55:03 +02:00
* { " foreign|relation " => [ " <foreign key table name> " => " <foreign key field name> " ],}
2018-10-21 07:56:58 +02:00
* " comment " => " Description of the fields "
* ],
* ...
* ],
* " indexes " => [
* " PRIMARY " => [ " <primary key field name> " , ... ],
* " <index name> " => [{ " UNIQUE " ,} " <field name> { (<key size>)} " , ... ]
* ...
* ],
* ],
*
2020-05-10 16:55:03 +02:00
* Whenever possible prefer " foreign " before " relation " with the foreign keys .
2021-02-25 06:13:49 +01:00
* " foreign " adds true foreign keys on the database level , while " relation " is just an indicator of a table relation without any consequences
2020-05-10 16:55:03 +02:00
*
2018-10-21 07:58:10 +02:00
* If you need to make any change , make sure to increment the DB_UPDATE_VERSION constant value below .
2018-10-21 07:56:58 +02:00
*
*/
use Friendica\Database\DBA ;
2018-10-21 07:58:10 +02:00
if ( ! defined ( 'DB_UPDATE_VERSION' )) {
2021-05-16 09:37:11 +02:00
define ( 'DB_UPDATE_VERSION' , 1418 );
2018-10-21 07:58:10 +02:00
}
2018-10-21 07:56:58 +02:00
return [
2020-05-15 14:17:13 +02:00
// Side tables
2020-05-22 07:06:55 +02:00
" gserver " => [
" comment " => " Global servers " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" nurl " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" version " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" site_name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" info " => [ " type " => " text " , " comment " => " " ],
" register_policy " => [ " type " => " tinyint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" registered-users " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of registered users " ],
" directory-type " => [ " type " => " tinyint " , " default " => " 0 " , " comment " => " Type of directory service (Poco, Mastodon) " ],
" poco " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" noscrape " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2021-01-09 20:18:22 +01:00
" protocol " => [ " type " => " tinyint unsigned " , " comment " => " The protocol of the server " ],
2020-05-22 07:06:55 +02:00
" platform " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" relay-subscribe " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Has the server subscribed to the relay system " ],
" relay-scope " => [ " type " => " varchar(10) " , " not null " => " 1 " , " default " => " " , " comment " => " The scope of messages that the server wants to get " ],
" detection-method " => [ " type " => " tinyint unsigned " , " comment " => " Method that had been used to detect that server " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" last_poco_query " => [ " type " => " datetime " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
2020-12-03 16:47:50 +01:00
" last_contact " => [ " type " => " datetime " , " default " => DBA :: NULL_DATETIME , " comment " => " Last successful connection request " ],
" last_failure " => [ " type " => " datetime " , " default " => DBA :: NULL_DATETIME , " comment " => " Last failed connection request " ],
2020-07-19 03:15:57 +02:00
" failed " => [ " type " => " boolean " , " comment " => " Connection failed " ],
2020-12-03 16:47:50 +01:00
" next_contact " => [ " type " => " datetime " , " default " => DBA :: NULL_DATETIME , " comment " => " Next connection request " ],
2020-05-22 07:06:55 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" nurl " => [ " UNIQUE " , " nurl(190) " ],
2020-12-03 16:47:50 +01:00
" next_contact " => [ " next_contact " ],
2021-02-21 17:43:06 +01:00
" network " => [ " network " ],
2020-05-22 07:06:55 +02:00
]
],
2020-11-17 23:49:55 +01:00
" user " => [
" comment " => " The local users " ,
" fields " => [
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-11-18 01:31:05 +01:00
" parent-uid " => [ " type " => " mediumint unsigned " , " foreign " => [ " user " => " uid " ],
2020-11-17 23:49:55 +01:00
" comment " => " The parent user that has full control about this user " ],
" guid " => [ " type " => " varchar(64) " , " not null " => " 1 " , " default " => " " , " comment " => " A unique identifier for this user " ],
" username " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " Name that this user is known by " ],
" password " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " encrypted password " ],
" legacy_password " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Is the password hash double-hashed? " ],
" nickname " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " nick- and user name " ],
" email " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " the users email address " ],
" openid " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" timezone " => [ " type " => " varchar(128) " , " not null " => " 1 " , " default " => " " , " comment " => " PHP-legal timezone " ],
" language " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " en " , " comment " => " default language " ],
" register_date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " timestamp of registration " ],
" login_date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " timestamp of last login " ],
" default-location " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " Default for item.location " ],
" allow_location " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 allows to display the location " ],
" theme " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " user theme preference " ],
" pubkey " => [ " type " => " text " , " comment " => " RSA public key 4096 bit " ],
" prvkey " => [ " type " => " text " , " comment " => " RSA private key 4096 bit " ],
" spubkey " => [ " type " => " text " , " comment " => " " ],
" sprvkey " => [ " type " => " text " , " comment " => " " ],
" verified " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " user is verified through email " ],
" blocked " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 for user is blocked " ],
" blockwall " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Prohibit contacts to post to the profile page of the user " ],
" hidewall " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Hide profile details from unkown viewers " ],
" blocktags " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Prohibit contacts to tag the post of this user " ],
" unkmail " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Permit unknown people to send private mails to this user " ],
" cntunkmail " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 10 " , " comment " => " " ],
" notify-flags " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 65535 " , " comment " => " email notification options " ],
" page-flags " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " page/profile type " ],
" account-type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" prvnets " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" pwdreset " => [ " type " => " varchar(255) " , " comment " => " Password reset request token " ],
" pwdreset_time " => [ " type " => " datetime " , " comment " => " Timestamp of the last password reset request " ],
" maxreq " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 10 " , " comment " => " " ],
" expire " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" account_removed " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " if 1 the account is removed " ],
" account_expired " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" account_expires_on " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " timestamp when account expires and will be deleted " ],
" expire_notification_sent " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " timestamp of last warning of account expiration " ],
" def_gid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" allow_cid " => [ " type " => " mediumtext " , " comment " => " default permission for this user " ],
" allow_gid " => [ " type " => " mediumtext " , " comment " => " default permission for this user " ],
" deny_cid " => [ " type " => " mediumtext " , " comment " => " default permission for this user " ],
" deny_gid " => [ " type " => " mediumtext " , " comment " => " default permission for this user " ],
" openidserver " => [ " type " => " text " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " uid " ],
" nickname " => [ " nickname(32) " ],
" parent-uid " => [ " parent-uid " ],
2021-02-21 11:37:15 +01:00
" guid " => [ " guid " ],
2021-02-21 16:27:00 +01:00
" email " => [ " email(64) " ],
2020-11-17 23:49:55 +01:00
]
],
2020-05-15 14:17:13 +02:00
" contact " => [
" comment " => " contact table " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-11-17 23:33:44 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2020-05-15 14:17:13 +02:00
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" updated " => [ " type " => " datetime " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of last contact update " ],
" self " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 if the contact is the user him/her self " ],
" remote_self " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" rel " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " The kind of the relation between the user and the contact " ],
" duplex " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " Network of the contact " ],
" protocol " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " Protocol of the contact " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " Name that this contact is known by " ],
" nick " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " Nick- and user name of the contact " ],
" location " => [ " type " => " varchar(255) " , " default " => " " , " comment " => " " ],
" about " => [ " type " => " text " , " comment " => " " ],
" keywords " => [ " type " => " text " , " comment " => " public keywords (interests) of the contact " ],
" gender " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " " , " comment " => " Deprecated " ],
" xmpp " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" attag " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" avatar " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " default " => " " , " comment " => " Link to the profile photo of the contact " ],
" thumb " => [ " type " => " varchar(255) " , " default " => " " , " comment " => " Link to the profile photo (thumb size) " ],
" micro " => [ " type " => " varchar(255) " , " default " => " " , " comment " => " Link to the profile photo (micro size) " ],
" site-pubkey " => [ " type " => " text " , " comment " => " " ],
" issued-id " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" dfrn-id " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" nurl " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" addr " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" alias " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" pubkey " => [ " type " => " text " , " comment " => " RSA public key 4096 bit " ],
" prvkey " => [ " type " => " text " , " comment " => " RSA private key 4096 bit " ],
" batch " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" request " => [ " type " => " varchar(255) " , " comment " => " " ],
" notify " => [ " type " => " varchar(255) " , " comment " => " " ],
" poll " => [ " type " => " varchar(255) " , " comment " => " " ],
" confirm " => [ " type " => " varchar(255) " , " comment " => " " ],
2020-06-01 23:52:31 +02:00
" subscribe " => [ " type " => " varchar(255) " , " comment " => " " ],
2020-05-15 14:17:13 +02:00
" poco " => [ " type " => " varchar(255) " , " comment " => " " ],
" aes_allow " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" ret-aes " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" usehub " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" subhub " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" hub-verify " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" last-update " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last try to update the contact info " ],
" success_update " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last successful contact update " ],
" failure_update " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last failed update " ],
2020-07-19 03:15:57 +02:00
" failed " => [ " type " => " boolean " , " comment " => " Connection failed " ],
2020-05-15 14:17:13 +02:00
" name-date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" uri-date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" avatar-date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" term-date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" last-item " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " date of the last post " ],
2020-07-26 09:34:33 +02:00
" last-discovery " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " date of the last follower discovery " ],
2020-05-15 14:17:13 +02:00
" priority " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" blocked " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " Node-wide block status " ],
" block_reason " => [ " type " => " text " , " comment " => " Node-wide block reason " ],
" readonly " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " posts of the contact are readonly " ],
" writable " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" forum " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " contact is a forum " ],
" prv " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " contact is a private group " ],
" contact-type " => [ " type " => " tinyint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2020-09-02 05:02:50 +02:00
" manually-approve " => [ " type " => " boolean " , " comment " => " " ],
2020-05-15 14:17:13 +02:00
" hidden " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" archive " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" pending " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " " ],
" deleted " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Contact has been deleted " ],
" rating " => [ " type " => " tinyint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" unsearchable " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Contact prefers to not be searchable " ],
" sensitive " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Contact posts sensitive content " ],
" baseurl " => [ " type " => " varchar(255) " , " default " => " " , " comment " => " baseurl of the contact " ],
2020-05-22 06:19:32 +02:00
" gsid " => [ " type " => " int unsigned " , " foreign " => [ " gserver " => " id " , " on delete " => " restrict " ], " comment " => " Global Server ID " ],
2020-05-15 14:17:13 +02:00
" reason " => [ " type " => " text " , " comment " => " " ],
" closeness " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 99 " , " comment " => " " ],
" info " => [ " type " => " mediumtext " , " comment " => " " ],
" profile-id " => [ " type " => " int unsigned " , " comment " => " Deprecated " ],
" bdyear " => [ " type " => " varchar(4) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" bd " => [ " type " => " date " , " not null " => " 1 " , " default " => DBA :: NULL_DATE , " comment " => " " ],
" notify_new_posts " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" fetch_further_information " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2020-06-06 22:43:23 +02:00
" ffi_keyword_denylist " => [ " type " => " text " , " comment " => " " ],
2020-05-15 14:17:13 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_name " => [ " uid " , " name(190) " ],
" self_uid " => [ " self " , " uid " ],
2020-11-19 10:47:59 +01:00
" alias_uid " => [ " alias(128) " , " uid " ],
2020-05-15 14:17:13 +02:00
" pending_uid " => [ " pending " , " uid " ],
" blocked_uid " => [ " blocked " , " uid " ],
" uid_rel_network_poll " => [ " uid " , " rel " , " network " , " poll(64) " , " archive " ],
" uid_network_batch " => [ " uid " , " network " , " batch(64) " ],
2021-03-06 17:52:36 +01:00
" batch_contact-type " => [ " batch(64) " , " contact-type " ],
2020-11-19 10:47:59 +01:00
" addr_uid " => [ " addr(128) " , " uid " ],
" nurl_uid " => [ " nurl(128) " , " uid " ],
" nick_uid " => [ " nick(128) " , " uid " ],
2020-08-18 12:50:18 +02:00
" attag_uid " => [ " attag(96) " , " uid " ],
2020-05-15 14:17:13 +02:00
" dfrn-id " => [ " dfrn-id(64) " ],
" issued-id " => [ " issued-id(64) " ],
2020-07-18 17:49:10 +02:00
" network_uid_lastupdate " => [ " network " , " uid " , " last-update " ],
2020-08-18 12:50:18 +02:00
" uid_network_self_lastupdate " => [ " uid " , " network " , " self " , " last-update " ],
2020-08-16 13:57:56 +02:00
" uid_lastitem " => [ " uid " , " last-item " ],
2021-02-21 17:43:06 +01:00
" baseurl " => [ " baseurl(64) " ],
2021-03-10 14:25:37 +01:00
" uid_contact-type " => [ " uid " , " contact-type " ],
" uid_self_contact-type " => [ " uid " , " self " , " contact-type " ],
" self_network_uid " => [ " self " , " network " , " uid " ],
2020-05-22 06:19:32 +02:00
" gsid " => [ " gsid " ]
2020-05-15 14:17:13 +02:00
]
],
" item-uri " => [
" comment " => " URI and GUID for items " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " ],
" uri " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " comment " => " URI of an item " ],
" guid " => [ " type " => " varbinary(255) " , " comment " => " A unique identifier for an item " ]
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uri " => [ " UNIQUE " , " uri " ],
" guid " => [ " guid " ]
]
],
2020-08-24 22:06:06 +02:00
" tag " => [
" comment " => " tags and mentions " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " " ],
" name " => [ " type " => " varchar(96) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" url " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ]
],
" indexes " => [
" PRIMARY " => [ " id " ],
" type_name_url " => [ " UNIQUE " , " name " , " url " ],
" url " => [ " url " ]
]
],
" clients " => [
" comment " => " OAuth usage " ,
" fields " => [
" client_id " => [ " type " => " varchar(20) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " " ],
" pw " => [ " type " => " varchar(20) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" redirect_uri " => [ " type " => " varchar(200) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" name " => [ " type " => " text " , " comment " => " " ],
" icon " => [ " type " => " text " , " comment " => " " ],
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
],
" indexes " => [
" PRIMARY " => [ " client_id " ],
" uid " => [ " uid " ],
]
],
2020-05-15 14:17:13 +02:00
" permissionset " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-11-17 23:33:44 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner id of this permission set " ],
2020-05-15 14:17:13 +02:00
" allow_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed contact.id '<19><78>' " ],
" allow_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed groups " ],
" deny_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied contact.id " ],
" deny_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied groups " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-11-17 23:33:44 +01:00
" uid_allow_cid_allow_gid_deny_cid_deny_gid " => [ " uid " , " allow_cid(50) " , " allow_gid(30) " , " deny_cid(50) " , " deny_gid(30) " ],
2020-05-15 14:17:13 +02:00
]
],
2020-11-20 01:17:32 +01:00
" verb " => [
" comment " => " Activity Verbs " ,
" fields " => [
" id " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " ],
" name " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " comment " => " " ]
],
" indexes " => [
2021-02-21 11:37:15 +01:00
" PRIMARY " => [ " id " ],
" name " => [ " name " ]
2020-11-20 01:17:32 +01:00
]
],
2020-05-15 14:17:13 +02:00
// Main tables
2019-07-22 13:39:28 +02:00
" 2fa_app_specific_password " => [
" comment " => " Two-factor app-specific _password " ,
" fields " => [
" id " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " Password ID for revocation " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " User ID " ],
2019-07-22 13:39:28 +02:00
" description " => [ " type " => " varchar(255) " , " comment " => " Description of the usage of the password " ],
2019-08-21 08:18:32 +02:00
" hashed_password " => [ " type " => " varchar(255) " , " not null " => " 1 " , " comment " => " Hashed password " ],
2019-07-22 13:39:28 +02:00
" generated " => [ " type " => " datetime " , " not null " => " 1 " , " comment " => " Datetime the password was generated " ],
" last_used " => [ " type " => " datetime " , " comment " => " Datetime the password was last used " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2019-08-21 08:18:32 +02:00
" uid_description " => [ " uid " , " description(190) " ],
2019-07-22 13:39:28 +02:00
]
],
2019-05-13 07:19:05 +02:00
" 2fa_recovery_codes " => [
" comment " => " Two-factor authentication recovery codes " ,
" fields " => [
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " User ID " ],
2019-05-16 21:53:07 +02:00
" code " => [ " type " => " varchar(50) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " Recovery code string " ],
2019-05-13 07:19:05 +02:00
" generated " => [ " type " => " datetime " , " not null " => " 1 " , " comment " => " Datetime the code was generated " ],
" used " => [ " type " => " datetime " , " comment " => " Datetime the code was used " ],
],
" indexes " => [
" PRIMARY " => [ " uid " , " code " ]
]
],
2021-01-19 05:27:44 +01:00
" 2fa_trusted_browser " => [
" comment " => " Two-factor authentication trusted browsers " ,
" fields " => [
" cookie_hash " => [ " type " => " varchar(80) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " Trusted cookie hash " ],
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " User ID " ],
" user_agent " => [ " type " => " text " , " comment " => " User agent string " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " comment " => " Datetime the trusted browser was recorded " ],
" last_used " => [ " type " => " datetime " , " comment " => " Datetime the trusted browser was last used " ],
],
" indexes " => [
" PRIMARY " => [ " cookie_hash " ],
" uid " => [ " uid " ],
]
],
2018-10-21 07:56:58 +02:00
" addon " => [
" comment " => " registered addons " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " " ],
" name " => [ " type " => " varchar(50) " , " not null " => " 1 " , " default " => " " , " comment " => " addon base (file)name " ],
" version " => [ " type " => " varchar(50) " , " not null " => " 1 " , " default " => " " , " comment " => " currently unused " ],
" installed " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " currently always 1 " ],
" hidden " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " currently unused " ],
" timestamp " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " file timestamp to check for reloads " ],
" plugin_admin " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 = has admin config, 0 = has no admin config " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2021-02-21 11:37:15 +01:00
" installed_name " => [ " installed " , " name " ],
2018-10-21 07:56:58 +02:00
" name " => [ " UNIQUE " , " name " ],
]
],
" apcontact " => [
" comment " => " ActivityPub compatible contacts - used in the ActivityPub implementation " ,
" fields " => [
" url " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " URL of the contact " ],
" uuid " => [ " type " => " varchar(255) " , " comment " => " " ],
" type " => [ " type " => " varchar(20) " , " not null " => " 1 " , " comment " => " " ],
" following " => [ " type " => " varchar(255) " , " comment " => " " ],
" followers " => [ " type " => " varchar(255) " , " comment " => " " ],
" inbox " => [ " type " => " varchar(255) " , " not null " => " 1 " , " comment " => " " ],
" outbox " => [ " type " => " varchar(255) " , " comment " => " " ],
" sharedinbox " => [ " type " => " varchar(255) " , " comment " => " " ],
2019-01-14 07:36:08 +01:00
" manually-approve " => [ " type " => " boolean " , " comment " => " " ],
2018-10-21 07:56:58 +02:00
" nick " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" name " => [ " type " => " varchar(255) " , " comment " => " " ],
" about " => [ " type " => " text " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " comment " => " " ],
" addr " => [ " type " => " varchar(255) " , " comment " => " " ],
" alias " => [ " type " => " varchar(255) " , " comment " => " " ],
" pubkey " => [ " type " => " text " , " comment " => " " ],
2020-06-04 23:55:14 +02:00
" subscribe " => [ " type " => " varchar(255) " , " comment " => " " ],
2018-10-21 07:56:58 +02:00
" baseurl " => [ " type " => " varchar(255) " , " comment " => " baseurl of the ap contact " ],
2020-05-22 06:19:32 +02:00
" gsid " => [ " type " => " int unsigned " , " foreign " => [ " gserver " => " id " , " on delete " => " restrict " ], " comment " => " Global Server ID " ],
2019-05-02 15:05:31 +02:00
" generator " => [ " type " => " varchar(255) " , " comment " => " Name of the contact's system " ],
2019-12-11 01:05:50 +01:00
" following_count " => [ " type " => " int unsigned " , " default " => 0 , " comment " => " Number of following contacts " ],
" followers_count " => [ " type " => " int unsigned " , " default " => 0 , " comment " => " Number of followers " ],
" statuses_count " => [ " type " => " int unsigned " , " default " => 0 , " comment " => " Number of posts " ],
2018-10-21 07:56:58 +02:00
" updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ]
],
" indexes " => [
" PRIMARY " => [ " url " ],
" addr " => [ " addr(32) " ],
" alias " => [ " alias(190) " ],
2020-05-22 06:19:32 +02:00
" followers " => [ " followers(190) " ],
2020-07-18 17:49:10 +02:00
" baseurl " => [ " baseurl(190) " ],
2020-11-23 20:25:22 +01:00
" sharedinbox " => [ " sharedinbox(190) " ],
2020-05-22 06:19:32 +02:00
" gsid " => [ " gsid " ]
2018-10-21 07:56:58 +02:00
]
],
2021-05-10 00:23:21 +02:00
" application " => [
" comment " => " OAuth application " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " generated index " ],
" client_id " => [ " type " => " varchar(64) " , " not null " => " 1 " , " comment " => " " ],
" client_secret " => [ " type " => " varchar(64) " , " not null " => " 1 " , " comment " => " " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " comment " => " " ],
" redirect_uri " => [ " type " => " varchar(255) " , " not null " => " 1 " , " comment " => " " ],
" website " => [ " type " => " varchar(255) " , " comment " => " " ],
" scopes " => [ " type " => " varchar(255) " , " comment " => " " ],
2021-05-13 16:58:55 +02:00
" read " => [ " type " => " boolean " , " comment " => " Read scope " ],
" write " => [ " type " => " boolean " , " comment " => " Write scope " ],
" follow " => [ " type " => " boolean " , " comment " => " Follow scope " ],
2021-05-16 09:37:11 +02:00
" push " => [ " type " => " boolean " , " comment " => " Push scope " ],
2021-05-10 00:23:21 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" client_id " => [ " UNIQUE " , " client_id " ]
]
],
2021-05-11 08:30:20 +02:00
" application-token " => [
" comment " => " OAuth user token " ,
" fields " => [
" application-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " application " => " id " ], " comment " => " " ],
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
" code " => [ " type " => " varchar(64) " , " not null " => " 1 " , " comment " => " " ],
" access_token " => [ " type " => " varchar(64) " , " not null " => " 1 " , " comment " => " " ],
2021-05-13 16:58:55 +02:00
" created_at " => [ " type " => " datetime " , " not null " => " 1 " , " comment " => " creation time " ],
" scopes " => [ " type " => " varchar(255) " , " comment " => " " ],
" read " => [ " type " => " boolean " , " comment " => " Read scope " ],
" write " => [ " type " => " boolean " , " comment " => " Write scope " ],
" follow " => [ " type " => " boolean " , " comment " => " Follow scope " ],
2021-05-16 09:37:11 +02:00
" push " => [ " type " => " boolean " , " comment " => " Push scope " ],
2021-05-11 08:30:20 +02:00
],
" indexes " => [
" PRIMARY " => [ " application-id " , " uid " ],
" uid_id " => [ " uid " , " application-id " ],
]
],
2018-10-21 07:56:58 +02:00
" attach " => [
" comment " => " file attachments " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " generated index " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2018-10-21 07:56:58 +02:00
" hash " => [ " type " => " varchar(64) " , " not null " => " 1 " , " default " => " " , " comment " => " hash " ],
" filename " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " filename of original " ],
" filetype " => [ " type " => " varchar(64) " , " not null " => " 1 " , " default " => " " , " comment " => " mimetype " ],
" filesize " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " size in bytes " ],
" data " => [ " type " => " longblob " , " not null " => " 1 " , " comment " => " file data " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation time " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " last edit time " ],
2019-10-28 21:59:55 +01:00
" allow_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed contact.id '<19><78> " ],
" allow_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed groups " ],
" deny_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied contact.id " ],
" deny_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied groups " ],
2019-01-02 15:13:05 +01:00
" backend-class " => [ " type " => " tinytext " , " comment " => " Storage backend class " ],
" backend-ref " => [ " type " => " text " , " comment " => " Storage backend data reference " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" auth_codes " => [
" comment " => " OAuth usage " ,
" fields " => [
" id " => [ " type " => " varchar(40) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " " ],
2020-05-10 16:55:03 +02:00
" client_id " => [ " type " => " varchar(20) " , " not null " => " 1 " , " default " => " " , " foreign " => [ " clients " => " client_id " ],
2018-10-21 07:56:58 +02:00
" comment " => " " ],
" redirect_uri " => [ " type " => " varchar(200) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" expires " => [ " type " => " int " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" scope " => [ " type " => " varchar(250) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-05-10 16:55:03 +02:00
" client_id " => [ " client_id " ]
2018-10-21 07:56:58 +02:00
]
],
" cache " => [
" comment " => " Stores temporary data " ,
" fields " => [
" k " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " cache key " ],
" v " => [ " type " => " mediumtext " , " comment " => " cached serialized value " ],
" expires " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of cache expiration " ],
" updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of cache insertion " ],
],
" indexes " => [
" PRIMARY " => [ " k " ],
" k_expires " => [ " k " , " expires " ],
]
],
" challenge " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" challenge " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" dfrn-id " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" expire " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" type " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" last_update " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2021-02-21 11:37:15 +01:00
" expire " => [ " expire " ],
2018-10-21 07:56:58 +02:00
]
],
" config " => [
" comment " => " main configuration storage " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " " ],
" cat " => [ " type " => " varbinary(50) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" k " => [ " type " => " varbinary(50) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" v " => [ " type " => " mediumtext " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" cat_k " => [ " UNIQUE " , " cat " , " k " ],
]
],
2020-03-10 22:10:59 +01:00
" contact-relation " => [
" comment " => " Contact relations " ,
" fields " => [
2020-07-26 09:34:33 +02:00
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " primary " => " 1 " , " comment " => " contact the related contact had interacted with " ],
" relation-cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " primary " => " 1 " , " comment " => " related contact who had interacted with the contact " ],
2020-03-10 23:04:03 +01:00
" last-interaction " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last interaction " ],
2020-07-26 09:34:33 +02:00
" follow-updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last update of the contact relationship " ],
" follows " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2020-03-10 22:10:59 +01:00
],
" indexes " => [
" PRIMARY " => [ " cid " , " relation-cid " ],
" relation-cid " => [ " relation-cid " ],
]
],
2018-10-21 07:56:58 +02:00
" conv " => [
" comment " => " private messages " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" guid " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " A unique identifier for this conversation " ],
" recips " => [ " type " => " text " , " comment " => " sender_handle;recipient_handle " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2018-10-21 07:56:58 +02:00
" creator " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " handle of creator " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation timestamp " ],
" updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " edited timestamp " ],
" subject " => [ " type " => " text " , " comment " => " subject of initial message " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid " => [ " uid " ],
]
],
" conversation " => [
" comment " => " Raw data and structure information for messages " ,
" fields " => [
" item-uri " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " Original URI of the item - unrelated to the table with the same name " ],
" reply-to-uri " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " default " => " " , " comment " => " URI to which this item is a reply " ],
" conversation-uri " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " default " => " " , " comment " => " GNU Social conversation URI " ],
" conversation-href " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " default " => " " , " comment " => " GNU Social conversation link " ],
" protocol " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 255 " , " comment " => " The protocol of the item " ],
2020-03-03 09:01:04 +01:00
" direction " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " How the message arrived here: 1=push, 2=pull " ],
2018-10-21 07:56:58 +02:00
" source " => [ " type " => " mediumtext " , " comment " => " Original source " ],
" received " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Receiving date " ],
],
" indexes " => [
" PRIMARY " => [ " item-uri " ],
" conversation-uri " => [ " conversation-uri " ],
" received " => [ " received " ],
]
],
2020-12-01 23:11:29 +01:00
" delayed-post " => [
2020-12-02 15:55:57 +01:00
" comment " => " Posts that are about to be distributed at a later time " ,
2020-12-01 23:11:29 +01:00
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " ],
2020-12-02 15:55:57 +01:00
" uri " => [ " type " => " varchar(255) " , " comment " => " URI of the post that will be distributed later " ],
2020-12-01 23:11:29 +01:00
" uid " => [ " type " => " mediumint unsigned " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
" delayed " => [ " type " => " datetime " , " comment " => " delay time " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-12-02 01:34:10 +01:00
" uid_uri " => [ " UNIQUE " , " uid " , " uri(190) " ],
2020-12-01 23:11:29 +01:00
]
],
2018-10-21 07:56:58 +02:00
" diaspora-interaction " => [
" comment " => " Signed Diaspora Interaction " ,
" fields " => [
2020-05-10 16:55:03 +02:00
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
2018-10-21 07:56:58 +02:00
" interaction " => [ " type " => " mediumtext " , " comment " => " The Diaspora interaction " ]
],
" indexes " => [
" PRIMARY " => [ " uri-id " ]
]
],
" event " => [
" comment " => " Events " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" guid " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2020-11-17 23:33:44 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2020-08-24 22:06:06 +02:00
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " contact_id (ID of the contact in contact table) " ],
2018-10-21 07:56:58 +02:00
" uri " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation time " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " last edit time " ],
" start " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " event start time " ],
" finish " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " event end time " ],
" summary " => [ " type " => " text " , " comment " => " short description or title of the event " ],
" desc " => [ " type " => " text " , " comment " => " event description " ],
" location " => [ " type " => " text " , " comment " => " event location " ],
" type " => [ " type " => " varchar(20) " , " not null " => " 1 " , " default " => " " , " comment " => " event or birthday " ],
" nofinish " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " if event does have no end this is 1 " ],
" adjust " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " adjust to timezone of the recipient (0 or 1) " ],
" ignore " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 0 or 1 " ],
2019-10-28 21:59:55 +01:00
" allow_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed contact.id '<19><78>' " ],
" allow_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed groups " ],
" deny_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied contact.id " ],
" deny_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied groups " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_start " => [ " uid " , " start " ],
2020-08-24 22:06:06 +02:00
" cid " => [ " cid " ],
2018-10-21 07:56:58 +02:00
]
],
" fcontact " => [
" comment " => " Diaspora compatible contacts - used in the Diaspora implementation " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" guid " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " unique id " ],
" url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" request " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" nick " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" addr " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" batch " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" notify " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" poll " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" confirm " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" priority " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" alias " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" pubkey " => [ " type " => " text " , " comment " => " " ],
" updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" addr " => [ " addr(32) " ],
" url " => [ " UNIQUE " , " url(190) " ],
]
],
" fsuggest " => [
" comment " => " friend suggestion stuff " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " " ],
2018-10-21 07:56:58 +02:00
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" request " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" note " => [ " type " => " text " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" cid " => [ " cid " ],
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" group " => [
" comment " => " privacy groups, group info " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2018-10-21 07:56:58 +02:00
" visible " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 indicates the member list is not private " ],
" deleted " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 1 indicates the group has been deleted " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " human readable name of group " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid " => [ " uid " ],
]
],
" group_member " => [
" comment " => " privacy groups, member info " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" gid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " group " => " id " ], " comment " => " groups.id of the associated group " ],
" contact-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " contact.id of the member assigned to the associated group " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" contactid " => [ " contact-id " ],
" gid_contactid " => [ " UNIQUE " , " gid " , " contact-id " ],
]
],
" gserver-tag " => [
" comment " => " Tags that the server has subscribed " ,
" fields " => [
2020-08-24 22:06:06 +02:00
" gserver-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " gserver " => " id " ], " primary " => " 1 " ,
2018-10-21 07:56:58 +02:00
" comment " => " The id of the gserver " ],
" tag " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " primary " => " 1 " , " comment " => " Tag that the server has subscribed " ],
],
" indexes " => [
" PRIMARY " => [ " gserver-id " , " tag " ],
" tag " => [ " tag " ],
]
],
" hook " => [
" comment " => " addon hook registry " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" hook " => [ " type " => " varbinary(100) " , " not null " => " 1 " , " default " => " " , " comment " => " name of hook " ],
" file " => [ " type " => " varbinary(200) " , " not null " => " 1 " , " default " => " " , " comment " => " relative filename of hook handler " ],
" function " => [ " type " => " varbinary(200) " , " not null " => " 1 " , " default " => " " , " comment " => " function name of hook handler " ],
" priority " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2021-02-21 11:37:15 +01:00
" priority " => [ " priority " ],
2018-10-21 07:56:58 +02:00
" hook_file_function " => [ " UNIQUE " , " hook " , " file " , " function " ],
]
],
2020-09-02 21:19:00 +02:00
" host " => [
" comment " => " Hostname " ,
" fields " => [
" id " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" name " => [ " type " => " varchar(128) " , " not null " => " 1 " , " default " => " " , " comment " => " The hostname " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" name " => [ " UNIQUE " , " name " ],
]
],
2019-03-25 22:51:32 +01:00
" inbox-status " => [
" comment " => " Status of ActivityPub inboxes " ,
" fields " => [
" url " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " URL of the inbox " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Creation date of this entry " ],
" success " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last successful delivery " ],
" failure " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of the last failed delivery " ],
" previous " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Previous delivery date " ],
2019-03-26 06:14:47 +01:00
" archive " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Is the inbox archived? " ],
" shared " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Is it a shared inbox? " ]
2019-03-25 22:51:32 +01:00
],
" indexes " => [
" PRIMARY " => [ " url " ]
]
],
2018-10-21 07:56:58 +02:00
" intro " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 23:03:00 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2020-11-19 07:26:30 +01:00
" fid " => [ " type " => " int unsigned " , " relation " => [ " fcontact " => " id " ], " comment " => " " ],
2020-08-24 22:06:06 +02:00
" contact-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " " ],
2018-10-21 07:56:58 +02:00
" knowyou " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" duplex " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" note " => [ " type " => " text " , " comment " => " " ],
" hash " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" datetime " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" blocked " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " " ],
" ignore " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" contact-id " => [ " contact-id " ],
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" locks " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" name " => [ " type " => " varchar(128) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" locked " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" pid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Process ID " ],
" expires " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of cache expiration " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" name_expires " => [ " name " , " expires " ]
]
],
" mail " => [
" comment " => " private messages " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2018-10-21 07:56:58 +02:00
" guid " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " A unique identifier for this private message " ],
" from-name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " name of the sender " ],
" from-photo " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " contact photo link of the sender " ],
" from-url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " profile linke of the sender " ],
2020-11-19 07:26:30 +01:00
" contact-id " => [ " type " => " varchar(255) " , " relation " => [ " contact " => " id " ], " comment " => " contact.id " ],
" convid " => [ " type " => " int unsigned " , " relation " => [ " conv " => " id " ], " comment " => " conv.id " ],
2018-10-21 07:56:58 +02:00
" title " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" body " => [ " type " => " mediumtext " , " comment " => " " ],
" seen " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " if message visited it is 1 " ],
" reply " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" replied " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" unknown " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " if sender not in the contact table this is 1 " ],
" uri " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" parent-uri " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation time of the private message " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_seen " => [ " uid " , " seen " ],
" convid " => [ " convid " ],
" uri " => [ " uri(64) " ],
" parent-uri " => [ " parent-uri(64) " ],
" contactid " => [ " contact-id(32) " ],
]
],
" mailacct " => [
" comment " => " Mail account data for fetching mails " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
" server " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" port " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" ssltype " => [ " type " => " varchar(16) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" mailbox " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" user " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" pass " => [ " type " => " text " , " comment " => " " ],
" reply_to " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" action " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" movetofolder " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" pubmail " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" last_check " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" manage " => [
" comment " => " table of accounts that can manage each other " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
" mid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_mid " => [ " UNIQUE " , " uid " , " mid " ],
2020-08-24 22:06:06 +02:00
" mid " => [ " mid " ],
2018-10-21 07:56:58 +02:00
]
],
" notify " => [
" comment " => " notifications " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" type " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" date " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" msg " => [ " type " => " mediumtext " , " comment " => " " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2018-10-21 07:56:58 +02:00
" link " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2021-02-16 23:04:03 +01:00
" iid " => [ " type " => " int unsigned " , " comment " => " " ],
" parent " => [ " type " => " int unsigned " , " comment " => " " ],
2020-11-19 07:26:30 +01:00
" uri-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Item-uri id of the related post " ],
" parent-uri-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Item-uri id of the parent of the related post " ],
2018-10-21 07:56:58 +02:00
" seen " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" verb " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" otype " => [ " type " => " varchar(10) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" name_cache " => [ " type " => " tinytext " , " comment " => " Cached bbcode parsing of name " ],
" msg_cache " => [ " type " => " mediumtext " , " comment " => " Cached bbcode parsing of msg " ]
],
" indexes " => [
" PRIMARY " => [ " id " ],
" seen_uid_date " => [ " seen " , " uid " , " date " ],
" uid_date " => [ " uid " , " date " ],
" uid_type_link " => [ " uid " , " type " , " link(190) " ],
2020-11-19 07:26:30 +01:00
" uri-id " => [ " uri-id " ],
" parent-uri-id " => [ " parent-uri-id " ],
2018-10-21 07:56:58 +02:00
]
],
" notify-threads " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-26 07:32:47 +02:00
" notify-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " notify " => " id " ], " comment " => " " ],
2021-02-16 23:04:03 +01:00
" master-parent-item " => [ " type " => " int unsigned " , " comment " => " Deprecated " ],
2020-11-19 07:26:30 +01:00
" master-parent-uri-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Item-uri id of the parent of the related post " ],
2018-10-21 07:56:58 +02:00
" parent-item " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2020-08-24 22:06:06 +02:00
" receiver-uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ],
2018-10-21 07:56:58 +02:00
" comment " => " User id " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-05-10 16:55:03 +02:00
" master-parent-uri-id " => [ " master-parent-uri-id " ],
2020-08-24 22:06:06 +02:00
" receiver-uid " => [ " receiver-uid " ],
2020-08-26 07:32:47 +02:00
" notify-id " => [ " notify-id " ],
2018-10-21 07:56:58 +02:00
]
],
" oembed " => [
" comment " => " cache for OEmbed queries " ,
" fields " => [
" url " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " page url " ],
" maxwidth " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " Maximum width passed to Oembed " ],
" content " => [ " type " => " mediumtext " , " comment " => " OEmbed data of the page " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of creation " ],
],
" indexes " => [
" PRIMARY " => [ " url " , " maxwidth " ],
" created " => [ " created " ],
]
],
" openwebauth-token " => [
" comment " => " Store OpenWebAuth token to verify contacts " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-11-17 23:33:44 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id - currently unused " ],
2018-10-21 07:56:58 +02:00
" type " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " " , " comment " => " Verify type " ],
" token " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " A generated token " ],
" meta " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of creation " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" parsed_url " => [
" comment " => " cache for 'parse_url' queries " ,
" fields " => [
2021-02-16 16:10:53 +01:00
" url_hash " => [ " type " => " binary(64) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " page url hash " ],
2018-10-21 07:56:58 +02:00
" guessing " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " comment " => " is the 'guessing' mode active? " ],
" oembed " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " comment " => " is the data the result of oembed? " ],
2021-02-16 16:10:53 +01:00
" url " => [ " type " => " text " , " not null " => " 1 " , " comment " => " page url " ],
2018-10-21 07:56:58 +02:00
" content " => [ " type " => " mediumtext " , " comment " => " page data " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of creation " ],
2021-02-16 16:10:53 +01:00
" expires " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime of expiration " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
2021-02-16 16:10:53 +01:00
" PRIMARY " => [ " url_hash " , " guessing " , " oembed " ],
2018-10-21 07:56:58 +02:00
" created " => [ " created " ],
2021-02-16 16:10:53 +01:00
" expires " => [ " expires " ],
2018-10-21 07:56:58 +02:00
]
],
" pconfig " => [
" comment " => " personal (per user) configuration storage " ,
" fields " => [
2020-11-14 15:22:56 +01:00
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " Primary key " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2020-11-14 15:22:56 +01:00
" cat " => [ " type " => " varchar(50) " , " not null " => " 1 " , " default " => " " , " comment " => " Category " ],
" k " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " comment " => " Key " ],
" v " => [ " type " => " mediumtext " , " comment " => " Value " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_cat_k " => [ " UNIQUE " , " uid " , " cat " , " k " ],
]
],
" photo " => [
" comment " => " photo storage " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-11-23 20:25:22 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " , " on delete " => " restrict " ], " comment " => " Owner User id " ],
2020-08-21 20:37:58 +02:00
" contact-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " contact.id " ],
2018-10-21 07:56:58 +02:00
" guid " => [ " type " => " char(16) " , " not null " => " 1 " , " default " => " " , " comment " => " A unique identifier for this photo " ],
" resource-id " => [ " type " => " char(32) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2020-12-26 19:51:36 +01:00
" hash " => [ " type " => " char(32) " , " comment " => " hash value of the photo " ],
2018-10-21 07:56:58 +02:00
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation date " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " last edited date " ],
" title " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" desc " => [ " type " => " text " , " comment " => " " ],
" album " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " The name of the album to which the photo belongs " ],
" filename " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" type " => [ " type " => " varchar(30) " , " not null " => " 1 " , " default " => " image/jpeg " ],
" height " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" width " => [ " type " => " smallint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" datasize " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" data " => [ " type " => " mediumblob " , " not null " => " 1 " , " comment " => " " ],
" scale " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" profile " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2019-10-28 21:59:55 +01:00
" allow_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed contact.id '<19><78>' " ],
" allow_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of allowed groups " ],
" deny_cid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied contact.id " ],
" deny_gid " => [ " type " => " mediumtext " , " comment " => " Access Control - list of denied groups " ],
2020-03-08 14:16:59 +01:00
" accessible " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Make photo publicly accessible, ignoring permissions " ],
2018-11-21 16:21:57 +01:00
" backend-class " => [ " type " => " tinytext " , " comment " => " Storage backend class " ],
2019-03-01 09:23:55 +01:00
" backend-ref " => [ " type " => " text " , " comment " => " Storage backend data reference " ],
" updated " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ]
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" contactid " => [ " contact-id " ],
" uid_contactid " => [ " uid " , " contact-id " ],
" uid_profile " => [ " uid " , " profile " ],
" uid_album_scale_created " => [ " uid " , " album(32) " , " scale " , " created " ],
" uid_album_resource-id_created " => [ " uid " , " album(32) " , " resource-id " , " created " ],
" resource-id " => [ " resource-id " ],
]
],
2021-02-13 20:56:03 +01:00
" post " => [
" comment " => " Structure for all posts " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" parent-uri-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table that contains the parent uri " ],
" thr-parent-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table that contains the thread parent uri " ],
2021-02-14 10:43:27 +01:00
" external-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the external uri " ],
2021-02-13 20:56:03 +01:00
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Creation timestamp. " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of last edit (default is created) " ],
" received " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime " ],
" gravity " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " Network from where the item comes from " ],
" owner-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the owner of this item " ],
" author-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the author of this item " ],
2021-03-01 23:19:47 +01:00
" causer-id " => [ " type " => " int unsigned " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the contact that caused the item creation " ],
2021-04-07 08:02:06 +02:00
" post-type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Post type (personal note, image, article, ...) " ],
2021-02-13 20:56:03 +01:00
" vid " => [ " type " => " smallint unsigned " , " foreign " => [ " verb " => " id " , " on delete " => " restrict " ], " comment " => " Id of the verb table entry that contains the activity verbs " ],
" private " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 0=public, 1=private, 2=unlisted " ],
" global " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" visible " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" deleted " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " item has been marked for deletion " ]
],
" indexes " => [
" PRIMARY " => [ " uri-id " ],
" parent-uri-id " => [ " parent-uri-id " ],
" thr-parent-id " => [ " thr-parent-id " ],
2021-02-14 10:43:27 +01:00
" external-id " => [ " external-id " ],
2021-02-13 20:56:03 +01:00
" owner-id " => [ " owner-id " ],
" author-id " => [ " author-id " ],
" causer-id " => [ " causer-id " ],
" vid " => [ " vid " ],
]
],
2020-05-15 14:17:13 +02:00
" post-category " => [
" comment " => " post relation to categories " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
2020-11-17 23:33:44 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2020-05-15 14:17:13 +02:00
" type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " comment " => " " ],
" tid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " tag " => " id " , " on delete " => " restrict " ], " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " uri-id " , " uid " , " type " , " tid " ],
2020-11-17 23:33:44 +01:00
" uri-id " => [ " tid " ],
" uid " => [ " uid " ],
2020-05-15 14:17:13 +02:00
]
],
2021-01-30 23:03:53 +01:00
" post-content " => [
" comment " => " Content for all posts " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" title " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " item title " ],
" content-warning " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" body " => [ " type " => " mediumtext " , " comment " => " item body content " ],
" raw-body " => [ " type " => " mediumtext " , " comment " => " Body without embedded media links " ],
" location " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " text location where this item originated " ],
" coord " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " longitude/latitude pair representing location where this item originated " ],
" language " => [ " type " => " text " , " comment " => " Language information about this post " ],
" app " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " application which generated this item " ],
" rendered-hash " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" rendered-html " => [ " type " => " mediumtext " , " comment " => " item.body converted to html " ],
" object-type " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " comment " => " ActivityStreams object type " ],
" object " => [ " type " => " text " , " comment " => " JSON encoded object structure unless it is an implied object (normal post) " ],
" target-type " => [ " type " => " varchar(100) " , " not null " => " 1 " , " default " => " " , " comment " => " ActivityStreams target type if applicable (URI) " ],
" target " => [ " type " => " text " , " comment " => " JSON encoded target structure if used " ],
" resource-id " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " " , " comment " => " Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type " ],
" plink " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " permalink or URL to a displayable copy of the message at its source " ]
],
" indexes " => [
" PRIMARY " => [ " uri-id " ],
" plink " => [ " plink(191) " ],
2021-02-21 06:28:27 +01:00
" resource-id " => [ " resource-id " ],
2021-01-30 23:03:53 +01:00
" title-content-warning-body " => [ " FULLTEXT " , " title " , " content-warning " , " body " ],
]
],
2020-05-15 14:17:13 +02:00
" post-delivery-data " => [
" comment " => " Delivery data for items " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" postopts " => [ " type " => " text " , " comment " => " External post connectors add their network name to this comma-separated string to identify that they should be delivered to these networks during delivery " ],
" inform " => [ " type " => " mediumtext " , " comment " => " Additional receivers of the linked item " ],
" queue_count " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Initial number of delivery recipients, used as item.delivery_queue_count " ],
" queue_done " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries, used as item.delivery_queue_done " ],
" queue_failed " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of unsuccessful deliveries, used as item.delivery_queue_failed " ],
" activitypub " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries via ActivityPub " ],
" dfrn " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries via DFRN " ],
" legacy_dfrn " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries via legacy DFRN " ],
" diaspora " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries via Diaspora " ],
" ostatus " => [ " type " => " mediumint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Number of successful deliveries via OStatus " ],
],
" indexes " => [
" PRIMARY " => [ " uri-id " ],
]
],
2020-10-29 06:20:26 +01:00
" post-media " => [
" comment " => " Attached media " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" url " => [ " type " => " varbinary(511) " , " not null " => " 1 " , " comment " => " Media URL " ],
" type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Media type " ],
" mimetype " => [ " type " => " varchar(60) " , " comment " => " " ],
" height " => [ " type " => " smallint unsigned " , " comment " => " Height of the media " ],
" width " => [ " type " => " smallint unsigned " , " comment " => " Width of the media " ],
" size " => [ " type " => " int unsigned " , " comment " => " Media size " ],
" preview " => [ " type " => " varbinary(255) " , " comment " => " Preview URL " ],
" preview-height " => [ " type " => " smallint unsigned " , " comment " => " Height of the preview picture " ],
" preview-width " => [ " type " => " smallint unsigned " , " comment " => " Width of the preview picture " ],
" description " => [ " type " => " text " , " comment " => " " ],
2021-04-26 08:50:12 +02:00
" name " => [ " type " => " varchar(255) " , " comment " => " Name of the media " ],
" author-url " => [ " type " => " varbinary(255) " , " comment " => " URL of the author of the media " ],
" author-name " => [ " type " => " varchar(255) " , " comment " => " Name of the author of the media " ],
" author-image " => [ " type " => " varbinary(255) " , " comment " => " Image of the author of the media " ],
" publisher-url " => [ " type " => " varbinary(255) " , " comment " => " URL of the publisher of the media " ],
" publisher-name " => [ " type " => " varchar(255) " , " comment " => " Name of the publisher of the media " ],
" publisher-image " => [ " type " => " varbinary(255) " , " comment " => " Image of the publisher of the media " ],
2020-10-29 06:20:26 +01:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uri-id-url " => [ " UNIQUE " , " uri-id " , " url " ],
]
],
2020-05-15 14:17:13 +02:00
" post-tag " => [
" comment " => " post relation to tags " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " comment " => " " ],
" tid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " tag " => " id " , " on delete " => " restrict " ], " comment " => " " ],
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Contact id of the mentioned public contact " ],
],
" indexes " => [
" PRIMARY " => [ " uri-id " , " type " , " tid " , " cid " ],
" tid " => [ " tid " ],
" cid " => [ " cid " ]
]
],
2021-02-04 06:51:25 +01:00
" post-thread " => [
" comment " => " Thread related data " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" owner-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Item owner " ],
" author-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Item author " ],
2021-03-01 23:19:47 +01:00
" causer-id " => [ " type " => " int unsigned " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the contact that caused the item creation " ],
2021-02-04 06:51:25 +01:00
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" received " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
2021-04-26 08:50:12 +02:00
" changed " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date that something in the conversation changed, indicating clients should fetch the conversation again " ],
2021-02-04 06:51:25 +01:00
" commented " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ]
],
" indexes " => [
" PRIMARY " => [ " uri-id " ],
" owner-id " => [ " owner-id " ],
" author-id " => [ " author-id " ],
" causer-id " => [ " causer-id " ],
" received " => [ " received " ],
" commented " => [ " commented " ],
]
],
2021-02-09 18:10:45 +01:00
" post-user " => [
" comment " => " User specific post data " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " ],
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
2021-02-13 20:56:03 +01:00
" parent-uri-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table that contains the parent uri " ],
" thr-parent-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table that contains the thread parent uri " ],
2021-02-14 10:43:27 +01:00
" external-id " => [ " type " => " int unsigned " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the external uri " ],
2021-02-13 20:56:03 +01:00
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Creation timestamp. " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of last edit (default is created) " ],
" received " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " datetime " ],
" gravity " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " Network from where the item comes from " ],
" owner-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the owner of this item " ],
" author-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the author of this item " ],
2021-03-01 23:19:47 +01:00
" causer-id " => [ " type " => " int unsigned " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the contact that caused the item creation " ],
2021-04-07 08:02:06 +02:00
" post-type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Post type (personal note, image, article, ...) " ],
" post-reason " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Reason why the post arrived at the user " ],
2021-02-13 20:56:03 +01:00
" vid " => [ " type " => " smallint unsigned " , " foreign " => [ " verb " => " id " , " on delete " => " restrict " ], " comment " => " Id of the verb table entry that contains the activity verbs " ],
" private " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " 0=public, 1=private, 2=unlisted " ],
" global " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" visible " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" deleted " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " item has been marked for deletion " ],
2021-02-09 18:10:45 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner id which owns this copy of the item " ],
" protocol " => [ " type " => " tinyint unsigned " , " comment " => " Protocol used to deliver the item for this user " ],
" contact-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " contact.id " ],
2021-02-13 20:56:03 +01:00
" event-id " => [ " type " => " int unsigned " , " foreign " => [ " event " => " id " ], " comment " => " Used to link to the event.id " ],
2021-02-09 18:10:45 +01:00
" unseen " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " post has not been seen " ],
" hidden " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Marker to hide the post from the user " ],
" notification-type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2021-02-13 20:56:03 +01:00
" wall " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " This item was posted to the wall of uid " ],
2021-02-09 18:10:45 +01:00
" origin " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " item originated at this site " ],
" psid " => [ " type " => " int unsigned " , " foreign " => [ " permissionset " => " id " , " on delete " => " restrict " ], " comment " => " ID of the permission set of this post " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_uri-id " => [ " UNIQUE " , " uid " , " uri-id " ],
" uri-id " => [ " uri-id " ],
2021-02-20 21:07:25 +01:00
" parent-uri-id " => [ " parent-uri-id " ],
2021-02-13 20:56:03 +01:00
" thr-parent-id " => [ " thr-parent-id " ],
2021-02-14 10:43:27 +01:00
" external-id " => [ " external-id " ],
2021-02-13 20:56:03 +01:00
" owner-id " => [ " owner-id " ],
2021-02-20 21:07:25 +01:00
" author-id " => [ " author-id " ],
2021-02-13 20:56:03 +01:00
" causer-id " => [ " causer-id " ],
" vid " => [ " vid " ],
2021-02-20 21:07:25 +01:00
" contact-id " => [ " contact-id " ],
" event-id " => [ " event-id " ],
" psid " => [ " psid " ],
" author-id_uid " => [ " author-id " , " uid " ],
" author-id_received " => [ " author-id " , " received " ],
" parent-uri-id_uid " => [ " parent-uri-id " , " uid " ],
" uid_contactid " => [ " uid " , " contact-id " ],
2021-02-13 20:56:03 +01:00
" uid_unseen_contactid " => [ " uid " , " unseen " , " contact-id " ],
2021-02-20 21:07:25 +01:00
" uid_unseen " => [ " uid " , " unseen " ],
2021-03-09 22:21:33 +01:00
" uid_hidden_uri-id " => [ " uid " , " hidden " , " uri-id " ],
2021-02-09 18:10:45 +01:00
],
],
2021-01-31 19:32:22 +01:00
" post-thread-user " => [
" comment " => " Thread related data per user " ,
" fields " => [
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
2021-02-13 20:56:03 +01:00
" owner-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Item owner " ],
" author-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Item author " ],
2021-03-01 23:19:47 +01:00
" causer-id " => [ " type " => " int unsigned " , " foreign " => [ " contact " => " id " , " on delete " => " restrict " ], " comment " => " Link to the contact table with uid=0 of the contact that caused the item creation " ],
2021-02-13 20:56:03 +01:00
" network " => [ " type " => " char(4) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" received " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
" changed " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date that something in the conversation changed, indicating clients should fetch the conversation again " ],
" commented " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
2021-01-31 19:32:22 +01:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner id which owns this copy of the item " ],
" pinned " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " The thread is pinned on the profile page " ],
" starred " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" ignored " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Ignore updates for this thread " ],
" wall " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " This item was posted to the wall of uid " ],
2021-02-04 06:51:25 +01:00
" mention " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2021-01-31 19:32:22 +01:00
" pubmail " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
2021-02-09 17:35:01 +01:00
" forum_mode " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" contact-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " contact.id " ],
" unseen " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 1 " , " comment " => " post has not been seen " ],
" hidden " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Marker to hide the post from the user " ],
" origin " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " item originated at this site " ],
" psid " => [ " type " => " int unsigned " , " foreign " => [ " permissionset " => " id " , " on delete " => " restrict " ], " comment " => " ID of the permission set of this post " ],
" post-user-id " => [ " type " => " int unsigned " , " foreign " => [ " post-user " => " id " ], " comment " => " Id of the post-user table " ],
2021-01-31 19:32:22 +01:00
],
" indexes " => [
" PRIMARY " => [ " uid " , " uri-id " ],
" uri-id " => [ " uri-id " ],
2021-02-20 21:07:25 +01:00
" owner-id " => [ " owner-id " ],
" author-id " => [ " author-id " ],
" causer-id " => [ " causer-id " ],
" uid " => [ " uid " ],
2021-02-09 17:35:01 +01:00
" contact-id " => [ " contact-id " ],
" psid " => [ " psid " ],
" post-user-id " => [ " post-user-id " ],
2021-02-20 21:07:25 +01:00
" commented " => [ " commented " ],
2021-03-06 06:47:49 +01:00
" uid_received " => [ " uid " , " received " ],
2021-02-20 21:07:25 +01:00
" uid_pinned " => [ " uid " , " pinned " ],
" uid_commented " => [ " uid " , " commented " ],
2021-03-06 06:47:49 +01:00
" uid_starred " => [ " uid " , " starred " ],
2021-02-20 21:07:25 +01:00
" uid_mention " => [ " uid " , " mention " ],
2021-01-31 19:32:22 +01:00
]
],
2021-02-01 11:31:38 +01:00
" post-user-notification " => [
2021-02-01 21:11:25 +01:00
" comment " => " User post notifications " ,
2021-02-01 11:31:38 +01:00
" fields " => [
2021-02-01 12:09:23 +01:00
" uri-id " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " item-uri " => " id " ], " comment " => " Id of the item-uri table entry that contains the item uri " ],
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner id which owns this copy of the item " ],
2021-02-01 11:31:38 +01:00
" notification-type " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " uid " , " uri-id " ],
2021-02-01 12:09:23 +01:00
" uri-id " => [ " uri-id " ],
2021-02-01 11:31:38 +01:00
],
],
2018-10-21 07:56:58 +02:00
" process " => [
" comment " => " Currently running system processes " ,
" fields " => [
" pid " => [ " type " => " int unsigned " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " " ],
" command " => [ " type " => " varbinary(32) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " pid " ],
" command " => [ " command " ],
]
],
" profile " => [
" comment " => " user profiles data " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner User id " ],
2020-01-19 15:43:15 +01:00
" profile-name " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" is-default " => [ " type " => " boolean " , " comment " => " Deprecated " ],
2018-10-21 07:56:58 +02:00
" hide-friends " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Hide friend list from viewers of this profile " ],
" name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2020-02-09 08:35:39 +01:00
" pdesc " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
2018-10-21 07:56:58 +02:00
" dob " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " 0000-00-00 " , " comment " => " Day of birth " ],
" address " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" locality " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" region " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" postal-code " => [ " type " => " varchar(32) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" country-name " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2020-01-19 15:43:15 +01:00
" hometown " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" gender " => [ " type " => " varchar(32) " , " comment " => " Deprecated " ],
" marital " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" with " => [ " type " => " text " , " comment " => " Deprecated " ],
" howlong " => [ " type " => " datetime " , " comment " => " Deprecated " ],
" sexual " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" politic " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" religion " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
2018-10-21 07:56:58 +02:00
" pub_keywords " => [ " type " => " text " , " comment " => " " ],
" prv_keywords " => [ " type " => " text " , " comment " => " " ],
2020-01-19 15:43:15 +01:00
" likes " => [ " type " => " text " , " comment " => " Deprecated " ],
" dislikes " => [ " type " => " text " , " comment " => " Deprecated " ],
2020-02-09 08:35:39 +01:00
" about " => [ " type " => " text " , " comment " => " Profile description " ],
2020-01-19 15:43:15 +01:00
" summary " => [ " type " => " varchar(255) " , " comment " => " Deprecated " ],
" music " => [ " type " => " text " , " comment " => " Deprecated " ],
" book " => [ " type " => " text " , " comment " => " Deprecated " ],
" tv " => [ " type " => " text " , " comment " => " Deprecated " ],
" film " => [ " type " => " text " , " comment " => " Deprecated " ],
" interest " => [ " type " => " text " , " comment " => " Deprecated " ],
" romance " => [ " type " => " text " , " comment " => " Deprecated " ],
" work " => [ " type " => " text " , " comment " => " Deprecated " ],
" education " => [ " type " => " text " , " comment " => " Deprecated " ],
" contact " => [ " type " => " text " , " comment " => " Deprecated " ],
2018-10-21 07:56:58 +02:00
" homepage " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" xmpp " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" photo " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" thumb " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" publish " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " publish default profile in local directory " ],
" net-publish " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " publish profile in global directory " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid_is-default " => [ " uid " , " is-default " ],
2018-12-24 00:54:06 +01:00
" pub_keywords " => [ " FULLTEXT " , " pub_keywords " ],
2018-10-21 07:56:58 +02:00
]
],
" profile_check " => [
" comment " => " DFRN remote auth use " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " contact " => " id " ], " comment " => " contact.id " ],
2018-10-21 07:56:58 +02:00
" dfrn_id " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" sec " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" expire " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ],
" cid " => [ " cid " ],
2018-10-21 07:56:58 +02:00
]
],
2019-11-08 04:09:19 +01:00
" profile_field " => [
" comment " => " Custom profile fields " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " Owner user id " ],
2019-11-08 04:09:19 +01:00
" order " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 1 " , " comment " => " Field ordering per user " ],
2020-05-10 17:43:43 +02:00
" psid " => [ " type " => " int unsigned " , " foreign " => [ " permissionset " => " id " , " on delete " => " restrict " ], " comment " => " ID of the permission set of this profile field - 0 = public " ],
2019-11-08 04:09:19 +01:00
" label " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " Label of the field " ],
" value " => [ " type " => " text " , " comment " => " Value of the field " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " creation time " ],
" edited " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " last edit time " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" uid " => [ " uid " ],
" order " => [ " order " ],
" psid " => [ " psid " ],
]
],
2018-10-21 07:56:58 +02:00
" push_subscriber " => [
" comment " => " Used for OStatus: Contains feed subscribers " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
" callback_url " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" topic " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" nickname " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" push " => [ " type " => " tinyint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Retrial counter " ],
" last_update " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of last successful trial " ],
" next_try " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Next retrial date " ],
" renewed " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Date of last subscription renewal " ],
" secret " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" next_try " => [ " next_try " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ]
2018-10-21 07:56:58 +02:00
]
],
" register " => [
" comment " => " registrations requiring admin approval " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" hash " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
" password " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" language " => [ " type " => " varchar(16) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" note " => [ " type " => " text " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " uid " ],
2018-10-21 07:56:58 +02:00
]
],
" search " => [
" comment " => " " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
" term " => [ " type " => " varchar(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2021-02-21 11:37:15 +01:00
" uid_term " => [ " uid " , " term(64) " ],
" term " => [ " term(64) " ]
2018-10-21 07:56:58 +02:00
]
],
" session " => [
" comment " => " web session storage " ,
" fields " => [
" id " => [ " type " => " bigint unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" sid " => [ " type " => " varbinary(255) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
" data " => [ " type " => " text " , " comment " => " " ],
" expire " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" sid " => [ " sid(64) " ],
" expire " => [ " expire " ],
]
],
2020-05-15 14:17:13 +02:00
" storage " => [
" comment " => " Data stored by Database storage backend " ,
2020-04-17 08:35:20 +02:00
" fields " => [
2020-05-15 14:17:13 +02:00
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " Auto incremented image data id " ],
" data " => [ " type " => " longblob " , " not null " => " 1 " , " comment " => " file data " ]
2020-04-14 01:54:28 +02:00
],
" indexes " => [
2020-05-15 14:17:13 +02:00
" PRIMARY " => [ " id " ]
2020-04-14 01:54:28 +02:00
]
],
2018-10-21 07:56:58 +02:00
" tokens " => [
" comment " => " OAuth usage " ,
" fields " => [
" id " => [ " type " => " varchar(40) " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " " ],
" secret " => [ " type " => " text " , " comment " => " " ],
2020-05-10 16:55:03 +02:00
" client_id " => [ " type " => " varchar(20) " , " not null " => " 1 " , " default " => " " , " foreign " => [ " clients " => " client_id " ]],
2018-10-21 07:56:58 +02:00
" expires " => [ " type " => " int " , " not null " => " 1 " , " default " => " 0 " , " comment " => " " ],
" scope " => [ " type " => " varchar(200) " , " not null " => " 1 " , " default " => " " , " comment " => " " ],
2020-08-24 22:06:06 +02:00
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-08-24 22:06:06 +02:00
" client_id " => [ " client_id " ],
" uid " => [ " uid " ]
2018-10-21 07:56:58 +02:00
]
],
" userd " => [
" comment " => " Deleted usernames " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " sequential ID " ],
" username " => [ " type " => " varchar(255) " , " not null " => " 1 " , " comment " => " " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
" username " => [ " username(32) " ],
]
],
" user-contact " => [
" comment " => " User specific public contact data " ,
" fields " => [
2020-08-24 22:06:06 +02:00
" cid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " contact " => " id " ], " comment " => " Contact id of the linked public contact " ],
" uid " => [ " type " => " mediumint unsigned " , " not null " => " 1 " , " default " => " 0 " , " primary " => " 1 " , " foreign " => [ " user " => " uid " ], " comment " => " User id " ],
2018-10-21 07:56:58 +02:00
" blocked " => [ " type " => " boolean " , " comment " => " Contact is completely blocked for this user " ],
" ignored " => [ " type " => " boolean " , " comment " => " Posts from this contact are ignored " ],
" collapsed " => [ " type " => " boolean " , " comment " => " Posts from this contact are collapsed " ]
],
" indexes " => [
2020-08-24 22:06:06 +02:00
" PRIMARY " => [ " uid " , " cid " ],
" cid " => [ " cid " ],
2018-10-21 07:56:58 +02:00
]
],
" worker-ipc " => [
" comment " => " Inter process communication between the frontend and the worker " ,
" fields " => [
" key " => [ " type " => " int " , " not null " => " 1 " , " primary " => " 1 " , " comment " => " " ],
" jobs " => [ " type " => " boolean " , " comment " => " Flag for outstanding jobs " ],
],
" indexes " => [
" PRIMARY " => [ " key " ],
],
" engine " => " MEMORY " ,
],
" workerqueue " => [
" comment " => " Background tasks queue entries " ,
" fields " => [
" id " => [ " type " => " int unsigned " , " not null " => " 1 " , " extra " => " auto_increment " , " primary " => " 1 " , " comment " => " Auto incremented worker task id " ],
2020-12-03 16:47:50 +01:00
" command " => [ " type " => " varchar(100) " , " comment " => " Task command " ],
" parameter " => [ " type " => " mediumtext " , " comment " => " Task parameter " ],
2018-10-21 07:56:58 +02:00
" priority " => [ " type " => " tinyint unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Task priority " ],
" created " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Creation date " ],
" pid " => [ " type " => " int unsigned " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Process id of the worker " ],
" executed " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Execution date " ],
" next_try " => [ " type " => " datetime " , " not null " => " 1 " , " default " => DBA :: NULL_DATETIME , " comment " => " Next retrial date " ],
" retrial " => [ " type " => " tinyint " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Retrial counter " ],
" done " => [ " type " => " boolean " , " not null " => " 1 " , " default " => " 0 " , " comment " => " Marked 1 when the task was done - will be deleted later " ],
],
" indexes " => [
" PRIMARY " => [ " id " ],
2020-12-03 16:47:50 +01:00
" command " => [ " command " ],
" done_command_parameter " => [ " done " , " command " , " parameter(64) " ],
2019-02-08 22:48:41 +01:00
" done_executed " => [ " done " , " executed " ],
2020-10-24 10:05:03 +02:00
" done_priority_retrial_created " => [ " done " , " priority " , " retrial " , " created " ],
2019-02-17 22:14:49 +01:00
" done_priority_next_try " => [ " done " , " priority " , " next_try " ],
2019-02-08 22:48:41 +01:00
" done_pid_next_try " => [ " done " , " pid " , " next_try " ],
2020-08-18 12:50:18 +02:00
" done_pid_retrial " => [ " done " , " pid " , " retrial " ],
2019-02-08 22:48:41 +01:00
" done_pid_priority_created " => [ " done " , " pid " , " priority " , " created " ]
2018-10-21 07:56:58 +02:00
]
2018-11-29 08:36:39 +01:00
],
2018-10-21 07:56:58 +02:00
];