Stats.EventId must be a bigint too
This commit is contained in:
parent
871e3807e6
commit
4e30a9e71c
|
@ -581,7 +581,7 @@ DROP TABLE IF EXISTS `Stats`;
|
||||||
CREATE TABLE `Stats` (
|
CREATE TABLE `Stats` (
|
||||||
`MonitorId` int(10) unsigned NOT NULL default '0',
|
`MonitorId` int(10) unsigned NOT NULL default '0',
|
||||||
`ZoneId` int(10) unsigned NOT NULL default '0',
|
`ZoneId` int(10) unsigned NOT NULL default '0',
|
||||||
`EventId` int(10) unsigned NOT NULL default '0',
|
`EventId` BIGINT UNSIGNED NOT NULL,
|
||||||
`FrameId` int(10) unsigned NOT NULL default '0',
|
`FrameId` int(10) unsigned NOT NULL default '0',
|
||||||
`PixelDiff` tinyint(3) unsigned NOT NULL default '0',
|
`PixelDiff` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`AlarmPixels` int(10) unsigned NOT NULL default '0',
|
`AlarmPixels` int(10) unsigned NOT NULL default '0',
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
ALTER TABLE Stats MODIFY COLUMN EventId bigint unsigned NOT NULL;
|
||||||
|
|
Loading…
Reference in New Issue