(fix) fixed default data value for c_hascertificate (fixes #4442)

pull/241/head
Ludovic Marcotte 2018-04-27 09:20:42 -04:00
parent e375575436
commit 6405567886
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -6,6 +6,7 @@ Enhancements
Bug fixes
- [core] properly update the last-modified attribute (#4313)
- [core] fixed default data value for c_hascertificate (#4442)
- [web] prevent deletion of special folders using del key
- [web] fixed SAML2 session timeout handling during XHR requests
- [web] fixed renaming a folder under iOS

View File

@ -135,7 +135,7 @@ CREATE TABLE sogo_quick_contact (
c_telephonenumber varchar(255) DEFAULT NULL,
c_categories varchar(255) DEFAULT NULL,
c_component varchar(10) NOT NULL,
c_hascertificate int(11) DEFAULT NULL,
c_hascertificate int(11) DEFAULT 0,
PRIMARY KEY (c_folder_id,c_name)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;