Re: Scheduled downtime duration field
Posted: Fri Sep 07, 2018 8:50 am
Here's the issue - your duration is smallint(6)...
Run the following command to modify it:
then verify that it was actually changed by running:
Let us know if this fixes your issue. Thanks!
It should be int(11).| duration | smallint(6) | NO | | 0 | |
Run the following command to modify it:
Code: Select all
echo 'ALTER TABLE nagios_scheduleddowntime MODIFY duration int(11) NOT NULL;' | mysql -uroot -pnagiosxi nagiosCode: Select all
echo 'describe nagios_scheduleddowntime;' | mysql -t -uroot -pnagiosxi nagios | grep duration