From 2a60146a434c56e6e739afd6788e98b202a91ba2 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 26 Nov 2017 15:45:59 -0500 Subject: [PATCH] Revert "Add new legacy password field" This reverts commit 2236f60cfa5814f74719ecb2641130cb32e6aa36. --- boot.php | 2 +- include/dbstructure.php | 1 - update.php | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 5ee4d5f4a2..9cdaefb212 100644 --- 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. diff --git a/include/dbstructure.php b/include/dbstructure.php index 65dda55c37..dde3dc6f18 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -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" => ""), diff --git a/update.php b/update.php index 7530d1a386..5cf9bbc2d4 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@