/usr/share/zoneminder/db/zm_update-0.9.16.sql is in zoneminder 1.26.5-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | --
-- This updates a 0.9.16 database to 0.9.17
--
-- Make changes to Users table
--
alter table Users add column Language varchar(8) not null default "" after Password;
--
-- These are optional, but we might as well
--
optimize table Frames;
optimize table Events;
optimize table Filters;
optimize table Zones;
optimize table Monitors;
optimize table Stats;
|