add rejected_data table

This commit is contained in:
Pedro Pérez 2025-10-23 00:35:09 +02:00
parent 14e5752d35
commit 60e3a804ac

View File

@ -17,3 +17,12 @@ create table public.temp_data
created_at timestamp not null default now() 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()
)