Skip to content

Commit

Permalink
Merge remote-tracking branch 'centreon-gorgone/MON-143655' into MON-1…
Browse files Browse the repository at this point in the history
…43655-migrate
  • Loading branch information
kduret committed Jul 19, 2024
2 parents 70b5322 + acf0473 commit e07d9b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gorgone/gorgone/modules/centreon/mbi/libs/bi/BIMetric.pm
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ sub createTodayTable {

$db->query({ query => "DROP TABLE IF EXISTS `".$self->{"today_table"}."`" });
my $query = "CREATE TABLE `" . $self->{"today_table"} . "` (";
$query .= "`id` INT NOT NULL,";
$query .= "`metric_id` int(11) NOT NULL,";
$query .= "`id` BIGINT(20) UNSIGNED NOT NULL,";
$query .= "`metric_id` BIGINT(20) UNSIGNED NOT NULL,";
$query .= "`metric_name` varchar(255) NOT NULL,";
$query .= "`sc_id` int(11) NOT NULL,";
$query .= "`hg_id` int(11) NOT NULL,";
Expand Down

0 comments on commit e07d9b1

Please sign in to comment.