caricamento nomi e tipi

This commit is contained in:
2024-11-27 00:34:07 +01:00
parent 19dc208b6a
commit 3ae1a29cc9
6 changed files with 69 additions and 642 deletions

View File

@@ -1,8 +1,14 @@
DROP TABLE public.received;
CREATE TABLE public.received
(
id serial4 NOT NULL,
filename text NULL,
"content" text NULL,
unit_name text NULL,
unit_type text NULL,
tool_name text NULL,
tool_data text NULL,
status int2 DEFAULT 0 NULL,
created_at timestamptz DEFAULT CURRENT_TIMESTAMP NULL,
loaded_at timestamptz NULL,
CONSTRAINT received_pk PRIMARY KEY (id)