]> git.mxchange.org Git - friendica.git/commitdiff
Revert "Add new legacy password field"
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 26 Nov 2017 20:45:59 +0000 (15:45 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 26 Nov 2017 20:45:59 +0000 (15:45 -0500)
This reverts commit 2236f60cfa5814f74719ecb2641130cb32e6aa36.

boot.php
include/dbstructure.php
update.php

index 5ee4d5f4a24a3dd0d51662723ac6960a0d222150..9cdaefb2124f11942dce06d58a137d8706bb6559 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -45,7 +45,7 @@ define('FRIENDICA_PLATFORM',     'Friendica');
 define('FRIENDICA_CODENAME',     'Asparagus');
 define('FRIENDICA_VERSION',      '3.6-dev');
 define('DFRN_PROTOCOL_VERSION',  '2.23');
-define('DB_UPDATE_VERSION',      1236);
+define('DB_UPDATE_VERSION',      1235);
 
 /**
  * @brief Constant with a HTML line break.
index 65dda55c376cb10dff1e378bd96f8b76d264218f..dde3dc6f18be5c66fa15efc1546c22794fb7dd35 100644 (file)
@@ -1682,7 +1682,6 @@ function db_definition() {
                                        "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
                                        "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
                                        "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
-                                       "legacy_password" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
                                        "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
                                        "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
                                        "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
index 7530d1a386765d64afcc963b2cbf5329454d65b9..5cf9bbc2d4e437719680e454092ab31f1bca6f26 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1236);
+define('UPDATE_VERSION' , 1235);
 
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;