]> git.mxchange.org Git - friendica.git/commitdiff
Added the database field to database.sql
authorMichael Vogel <ike@pirati.ca>
Tue, 4 Oct 2016 03:53:31 +0000 (03:53 +0000)
committerMichael Vogel <ike@pirati.ca>
Tue, 4 Oct 2016 03:53:31 +0000 (03:53 +0000)
boot.php
database.sql
update.php

index ea14428fd0565f2fc6fe5fbb4ba8a5d468d34044..1c475ca935fef5f7cccaf32bdf718db0e48223a1 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
 define ( 'FRIENDICA_VERSION',      '3.5.1-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1203      );
+define ( 'DB_UPDATE_VERSION',      1204      );
 
 /**
  * @brief Constant with a HTML line break.
index a482b106cfdb3a8e9ca66ebbe61aeac11699b8d9..4133d3e825dc66f60150b98fc0c9ad344a4433d9 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1203
+-- DB_UPDATE_VERSION 1204
 -- ------------------------------------------
 
 
@@ -328,6 +328,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
        `gender` varchar(32) NOT NULL DEFAULT '',
        `birthday` varchar(32) NOT NULL DEFAULT '0000-00-00',
        `community` tinyint(1) NOT NULL DEFAULT 0,
+       `contact-type` tinyint(1) NOT NULL DEFAULT -1,
        `hide` tinyint(1) NOT NULL DEFAULT 0,
        `nsfw` tinyint(1) NOT NULL DEFAULT 0,
        `network` varchar(255) NOT NULL DEFAULT '',
index 31f7852a2f12b5c069ad63b1b903fdb7cb9e9046..863025ccc706113b9695a2e30b2e6cbba860c64e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1203);
+define('UPDATE_VERSION' , 1204);
 
 /**
  *