From ed64b1f09afd6402b56a4da253829bfba38c0f4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Wed, 17 Jul 2024 09:17:58 +0100 Subject: [PATCH] chore: use BIGSERIAL instead --- src/migrations/20240716135038-integration-events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/migrations/20240716135038-integration-events.js b/src/migrations/20240716135038-integration-events.js index 1a4467568a7f..11b9555a8069 100644 --- a/src/migrations/20240716135038-integration-events.js +++ b/src/migrations/20240716135038-integration-events.js @@ -3,7 +3,7 @@ exports.up = function (db, cb) { ` CREATE TABLE IF NOT EXISTS integration_events ( - id SERIAL PRIMARY KEY NOT NULL, + id BIGSERIAL PRIMARY KEY NOT NULL, integration_id INTEGER NOT NULL REFERENCES addons(id) ON DELETE CASCADE, created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), state TEXT NOT NULL,