Revert "Add new legacy password field"

This reverts commit 2236f60cfa.
This commit is contained in:
Hypolite Petovan 2017-11-26 15:45:59 -05:00
parent 456dfbe486
commit 2a60146a43
3 changed files with 2 additions and 3 deletions

View File

@ -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.

View 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" => ""),

View File

@ -1,6 +1,6 @@
<?php
define('UPDATE_VERSION' , 1236);
define('UPDATE_VERSION' , 1235);
use Friendica\Core\Config;
use Friendica\Core\PConfig;