Home changing-default-start-early--end-late-settings
Post
Cancel

changing-default-start-early--end-late-settings

can be done via the front end, but also can be done via MySQL;

find the template in the record table;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mysql> select * from record where title like 'Default%' \G
*************************** 1. row ***************************
     recordid: 2302
         type: 11
       chanid: 0
    starttime: 07:23:56
    startdate: 2014-09-06
      endtime: 07:23:56
      enddate: 2014-09-06
        title: Default (Template)
....
    maxnewest: 0
  startoffset: 5
    endoffset: 5
     recgroup: Default
......

Change as required (eg, 1 minute offset);

1
mysql> update record set startoffset = 1, endoffset = 1 where recordid = 2302;
This post is licensed under CC BY 4.0 by the author.