Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion db/zm_create.sql.in
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ CREATE TABLE Reports (

CREATE TABLE `Tags` (
`Id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`Name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`CreateDate` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
`CreatedBy` int(10) unsigned,
`LastAssignedDate` dateTime,
Expand Down
6 changes: 6 additions & 0 deletions db/zm_update-1.39.6.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
--
-- This updates a 1.39.5 database to 1.39.6
--
-- Make changes to the Tags table and change the Name column's COLLATE to utf8mb4_bin
--
ALTER TABLE `Tags` MODIFY `Name` VARCHAR(64) CHARACTER SET `utf8mb4` COLLATE `utf8mb4_bin` NOT NULL DEFAULT '';
2 changes: 1 addition & 1 deletion distros/redhat/zoneminder.spec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
%global zmtargetdistro %{?rhel:el%{rhel}}%{!?rhel:fc%{fedora}}

Name: zoneminder
Version: 1.39.5
Version: 1.39.6
Release: 1%{?dist}
Summary: A camera monitoring and analysis tool
Group: System Environment/Daemons
Expand Down