storage-common/pgsql/msgstore/ttmp-json.sql

6 lines
123 B
SQL

-- temporary table for loading JSON data
CREATE TABLE tmp_json (
id bigserial NOT NULL primary key,
data jsonb
);