From aac04a581fa905b9eb1f463cbd821f2b9f43d41e Mon Sep 17 00:00:00 2001 From: Jordan Olshevski Date: Mon, 1 Jan 2024 21:41:26 -0600 Subject: [PATCH] Fix event id type --- internal/eventing/sink.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/eventing/sink.go b/internal/eventing/sink.go index 71f8da2..ddfce94 100644 --- a/internal/eventing/sink.go +++ b/internal/eventing/sink.go @@ -12,7 +12,7 @@ import ( const migration = ` CREATE TABLE IF NOT EXISTS profile_events ( - id integer primary key, + id serial primary key, time timestamp not null, email text not null, reason text not null,