diff --git a/inc/SP/Core/Upgrade/Upgrade.class.php b/inc/SP/Core/Upgrade/Upgrade.class.php index 34102d28..62b87095 100644 --- a/inc/SP/Core/Upgrade/Upgrade.class.php +++ b/inc/SP/Core/Upgrade/Upgrade.class.php @@ -56,7 +56,7 @@ class Upgrade /** * @var array Versiones actualizables */ - private static $dbUpgrade = ['110', '112.1', '112.2', '112.3', '112.13', '112.19', '112.20', '120.01', '120.02', '130.16011001', '130.16100601', '200.17011302', '200.17011701', '210.17022601']; + private static $dbUpgrade = ['110', '112.1', '112.2', '112.3', '112.13', '112.19', '112.20', '120.01', '120.02', '130.16011001', '130.16100601', '200.17011302', '200.17011701', '210.17022601', '213.17031402']; private static $cfgUpgrade = ['112.4', '130.16020501', '200.17011202']; private static $auxUpgrade = ['120.01', '120.02', '200.17010901', '200.17011202']; private static $appUpgrade = ['210.17022601']; diff --git a/inc/sql/21317031402.sql b/inc/sql/21317031402.sql new file mode 100644 index 00000000..b02df2e0 --- /dev/null +++ b/inc/sql/21317031402.sql @@ -0,0 +1 @@ +ALTER TABLE `accHistory` CHANGE COLUMN `acchistory_pass` `acchistory_pass` VARBINARY(1000) NOT NULL ; \ No newline at end of file diff --git a/inc/sql/dbstructure.sql b/inc/sql/dbstructure.sql index 2b7b8f95..e17617c7 100644 --- a/inc/sql/dbstructure.sql +++ b/inc/sql/dbstructure.sql @@ -192,7 +192,7 @@ CREATE TABLE `accHistory` ( `acchistory_categoryId` smallint(5) unsigned NOT NULL, `acchistory_login` varchar(50) NOT NULL, `acchistory_url` varchar(255) DEFAULT NULL, - `acchistory_pass` varbinary(500) NOT NULL, + `acchistory_pass` varbinary(1000) NOT NULL, `acchistory_key` varbinary(1000) NOT NULL, `acchistory_notes` text NOT NULL, `acchistory_countView` int(10) unsigned NOT NULL DEFAULT '0',