1383 lines
88 KiB
PHP
1383 lines
88 KiB
PHP
<?php
|
|
|
|
/* Main database structure configuration file.
|
|
*
|
|
* Here are described all the tables, fields and indexes Friendica needs to work.
|
|
*
|
|
* 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",}
|
|
* {"relation" => ["<foreign key table name>" => "<foreign key field name>"],}
|
|
* "comment" => "Description of the fields"
|
|
* ],
|
|
* ...
|
|
* ],
|
|
* "indexes" => [
|
|
* "PRIMARY" => ["<primary key field name>", ...],
|
|
* "<index name>" => [{"UNIQUE",} "<field name>{(<key size>)}", ...]
|
|
* ...
|
|
* ],
|
|
* ],
|
|
*
|
|
* If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value below.
|
|
*
|
|
*/
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
if (!defined('DB_UPDATE_VERSION')) {
|
|
define('DB_UPDATE_VERSION', 1293);
|
|
}
|
|
|
|
return [
|
|
"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"],
|
|
"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" => ""],
|
|
"manually-approve" => ["type" => "boolean", "comment" => ""],
|
|
"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" => ""],
|
|
"baseurl" => ["type" => "varchar(255)", "comment" => "baseurl of the ap contact"],
|
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
|
|
],
|
|
"indexes" => [
|
|
"PRIMARY" => ["url"],
|
|
"addr" => ["addr(32)"],
|
|
"alias" => ["alias(190)"],
|
|
"url" => ["followers(190)"]
|
|
]
|
|
],
|
|
"attach" => [
|
|
"comment" => "file attachments",
|
|
"fields" => [
|
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "Owner User id"],
|
|
"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"],
|
|
"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"],
|
|
]
|
|
],
|
|
"auth_codes" => [
|
|
"comment" => "OAuth usage",
|
|
"fields" => [
|
|
"id" => ["type" => "varchar(40)", "not null" => "1", "primary" => "1", "comment" => ""],
|
|
"client_id" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "relation" => ["clients" => "client_id"],
|
|
"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"],
|
|
]
|
|
],
|
|
"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"],
|
|
]
|
|
],
|
|
"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", "relation" => ["user" => "uid"], "comment" => "User id"],
|
|
],
|
|
"indexes" => [
|
|
"PRIMARY" => ["client_id"],
|
|
]
|
|
],
|
|
"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"],
|
|
]
|
|
],
|
|
"contact" => [
|
|
"comment" => "contact table",
|
|
"fields" => [
|
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "Owner User id"],
|
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
|
"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 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)", "not null" => "1", "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" => ""],
|
|
"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" => ""],
|
|
"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"],
|
|
"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"],
|
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
|
"blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
|
"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" => ""],
|
|
"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" => ""],
|
|
"reason" => ["type" => "text", "comment" => ""],
|
|
"closeness" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "99", "comment" => ""],
|
|
"info" => ["type" => "mediumtext", "comment" => ""],
|
|
"profile-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
|
"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" => ""],
|
|
"ffi_keyword_blacklist" => ["type" => "text", "comment" => ""],
|
|
],
|
|
"indexes" => [
|
|
"PRIMARY" => ["id"],
|
|
"uid_name" => ["uid", "name(190)"],
|
|
"self_uid" => ["self", "uid"],
|
|
"alias_uid" => ["alias(32)", "uid"],
|
|
"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)"],
|
|
"addr_uid" => ["addr(32)", "uid"],
|
|
"nurl_uid" => ["nurl(32)", "uid"],
|
|
"nick_uid" => ["nick(32)", "uid"],
|
|
"dfrn-id" => ["dfrn-id(64)"],
|
|
"issued-id" => ["issued-id(64)"],
|
|
]
|
|
],
|
|
"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"],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "Owner User id"],
|
|
"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"],
|
|
"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"],
|
|
]
|
|
],
|
|
"diaspora-interaction" => [
|
|
"comment" => "Signed Diaspora Interaction",
|
|
"fields" => [
|
|
"uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "relation" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
|
|
"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" => ""],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "Owner User id"],
|
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
|
|
"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"],
|
|
"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"],
|
|
"uid_start" => ["uid", "start"],
|
|
]
|
|
],
|
|
"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" => ""],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
|
"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"],
|
|
]
|
|
],
|
|
"gcign" => [
|
|
"comment" => "contacts ignored by friend suggestions",
|
|
"fields" => [
|
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "Local User id"],
|
|
"gcid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => "gcontact.id of ignored contact"],
|
|
],
|
|
"indexes" => [
|
|
"PRIMARY" => ["id"],
|
|
"uid" => ["uid"],
|
|
"gcid" => ["gcid"],
|
|
]
|
|
],
|
|
"gcontact" => [
|
|
"comment" => "global contacts",
|
|
"fields" => [
|
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
|
"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"],
|
|
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Link to the contacts profile page"],
|
|
"nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Link to the profile photo"],
|
|
"connect" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
|
"updated" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
|
"last_contact" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
|
"last_failure" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
|
"location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"about" => ["type" => "text", "comment" => ""],
|
|
"keywords" => ["type" => "text", "comment" => "puplic keywords (interests)"],
|
|
"gender" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"birthday" => ["type" => "varchar(32)", "not null" => "1", "default" => DBA::NULL_DATE, "comment" => ""],
|
|
"community" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 if contact is forum account"],
|
|
"contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "-1", "comment" => ""],
|
|
"hide" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 = should be hidden from search"],
|
|
"nsfw" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 = contact posts nsfw content"],
|
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "social network protocol"],
|
|
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"notify" => ["type" => "varchar(255)", "comment" => ""],
|
|
"alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
|
"generation< |