diff --git a/boot.php b/boot.php index 9cdaefb21..5ee4d5f4a 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', 1235); +define('DB_UPDATE_VERSION', 1236); /** * @brief Constant with a HTML line break. diff --git a/include/dbstructure.php b/include/dbstructure.php index dde3dc6f1..65dda55c3 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1682,6 +1682,7 @@ 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 5cf9bbc2d..7530d1a38 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@