X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=database.sql;h=f33f8921183406c3544e256b019644a96b0115ae;hb=89534b5be37dd817e93b51892d8e6dc6d036a7b8;hp=a5e94f3f542280714feefacf35c5a52e6730ae8d;hpb=bd77556b494f167adb675630f44b6e74aa451927;p=friendica.git diff --git a/database.sql b/database.sql index a5e94f3f54..f33f892118 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2020.03-dev (Dalmatian Bellflower) --- DB_UPDATE_VERSION 1336 +-- DB_UPDATE_VERSION 1337 -- ------------------------------------------ @@ -393,6 +393,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( `updated` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '', `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '', `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '', + `last_discovery` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last contact discovery', `archive_date` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '', `archived` boolean NOT NULL DEFAULT '0' COMMENT '', `location` varchar(255) NOT NULL DEFAULT '' COMMENT '', @@ -425,6 +426,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( CREATE TABLE IF NOT EXISTS `gfollower` ( `gcid` int unsigned NOT NULL DEFAULT 0 COMMENT 'global contact', `follower-gcid` int unsigned NOT NULL DEFAULT 0 COMMENT 'global contact of the follower', + `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates that the connection has been deleted', PRIMARY KEY(`gcid`,`follower-gcid`), INDEX `follower-gcid` (`follower-gcid`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Followers of global contacts'; @@ -946,6 +948,7 @@ CREATE TABLE IF NOT EXISTS `photo` ( `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups', `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id', `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups', + `accessible` boolean NOT NULL DEFAULT '0' COMMENT 'Make photo publicly accessible, ignoring permissions', `backend-class` tinytext COMMENT 'Storage backend class', `backend-ref` text COMMENT 'Storage backend data reference', `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',