add rejected_data table
This commit is contained in:
@@ -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()
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user