6 lines
123 B
SQL
6 lines
123 B
SQL
-- temporary table for loading JSON data
|
|
|
|
CREATE TABLE tmp_json (
|
|
id bigserial NOT NULL primary key,
|
|
data jsonb
|
|
);
|