From 3ccf46c5e306b0ec70f39630da3fa0a1c4fa8506 Mon Sep 17 00:00:00 2001 From: esposimo Date: Fri, 15 Mar 2024 17:20:52 +0100 Subject: [PATCH] fix workflow table --- src/sql/02_2024_create_table.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/sql/02_2024_create_table.sql b/src/sql/02_2024_create_table.sql index 4280fbe1..60da05dd 100644 --- a/src/sql/02_2024_create_table.sql +++ b/src/sql/02_2024_create_table.sql @@ -42,8 +42,11 @@ create table if not exists public.transaction_events_2024 fk_tipoEvento bigint not null, event_timestamp timestamp not null, event_id varchar(50) null, - tipo_evento varchar(40) null, - sotto_tipo_evento varchar(10) null, + id_broker_pa varchar(25) null, + id_broker_psp varchar(25) null, + id_psp varchar(25) null, + stazione varchar(30) null, + canale varchar(30) null, faultcode varchar(50) null, constraint transaction_events_2024_pk primary key (date_event, id) )