From 67068afb13a093e75b04384b3c96ccaaee7be7c7 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Fri, 10 Jan 2025 13:41:07 +0100 Subject: [PATCH] chore: fix migration file (#9079) --- src/migrations/20250109150818-unique-connections-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/migrations/20250109150818-unique-connections-table.js b/src/migrations/20250109150818-unique-connections-table.js index 6429b77a29..7c49503622 100644 --- a/src/migrations/20250109150818-unique-connections-table.js +++ b/src/migrations/20250109150818-unique-connections-table.js @@ -4,7 +4,7 @@ exports.up = function(db, cb) { ( id VARCHAR(255) PRIMARY KEY NOT NULL, updated_at TIMESTAMP DEFAULT now(), - hll BYTEA NOT NULL, + hll BYTEA NOT NULL ); `, cb) };