add rejected_data table
This commit is contained in:
parent
14e5752d35
commit
60e3a804ac
@ -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()
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user