Commit 165870a2 authored by Vincent Pelletier's avatar Vincent Pelletier

CMFActivity: Fix active_process_uid column type.

Fixes Active Process' "hasActivity" method when that document's uid is >2**32.
parent ba7f2857
......@@ -147,7 +147,7 @@ CREATE TABLE %s (
`uid` BIGINT UNSIGNED NOT NULL,
`date` DATETIME(6) NOT NULL,
`path` VARCHAR(255) NOT NULL,
`active_process_uid` INT UNSIGNED NULL,
`active_process_uid` BIGINT UNSIGNED NULL,
`method_id` VARCHAR(255) NOT NULL,
`processing_node` SMALLINT NOT NULL DEFAULT -1,
`priority` TINYINT NOT NULL DEFAULT 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment