* [FIX] FIxed DB password field length for accounts history data.

This commit is contained in:
nuxsmin
2017-03-14 16:53:54 +01:00
parent f9099016b9
commit c2cde9795e
3 changed files with 3 additions and 2 deletions

View File

@@ -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',