Skip to content

Commit

Permalink
add method_name field to metadata table
Browse files Browse the repository at this point in the history
  • Loading branch information
esposimo committed Apr 9, 2024
1 parent b006e27 commit c81e4ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/02_2024_create_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ create table if not exists public.metadata_2024 (
fk_transfer bigint not null,
meta_key varchar(140) not null,
meta_value varchar(140) not null,
method_name varchar(30) not null,
constraint "METADATA_2024_pk" primary key (date_event, id)
)
PARTITION BY RANGE (date_event);


create table if not exists public.mapped_events (
tipo_evento varchar(50) not null,
sotto_tipo_evento varchar(15) not null,
Expand Down

0 comments on commit c81e4ea

Please sign in to comment.