diff --git a/service_a/server/database/migrations/001_data.up.sql b/service_a/server/database/migrations/001_data.up.sql index d06c82a..3934ecb 100644 --- a/service_a/server/database/migrations/001_data.up.sql +++ b/service_a/server/database/migrations/001_data.up.sql @@ -17,3 +17,12 @@ create table public.temp_data created_at timestamp not null default now() ); + +create table public.rejected_data +( + id serial primary key, + raw_data text not null, + reason text default null, + + created_at timestamp not null default now() +)