From 0365623ad73f9dfde27c3c0f1845be8336f0c9a4 Mon Sep 17 00:00:00 2001 From: Kent Chenery Date: Thu, 25 Apr 2024 14:01:57 +1200 Subject: [PATCH] Migrate sequence_id to BIGSERIAL --- src/Contrib.KafkaFlow.Outbox.Postgres/schema/0003.Bigserial.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contrib.KafkaFlow.Outbox.Postgres/schema/0003.Bigserial.sql b/src/Contrib.KafkaFlow.Outbox.Postgres/schema/0003.Bigserial.sql index c762e8e..636e50c 100644 --- a/src/Contrib.KafkaFlow.Outbox.Postgres/schema/0003.Bigserial.sql +++ b/src/Contrib.KafkaFlow.Outbox.Postgres/schema/0003.Bigserial.sql @@ -1 +1 @@ -ALTER TABLE outbox.outbox ALTER COLUMN sequence_id SET TYPE BIGINT; +ALTER TABLE "outbox"."outbox" ALTER COLUMN "sequence_id" TYPE BIGINT;