From 94846deb98ccb892a39795a9e8626f7303efd395 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Tue, 25 Jul 2023 18:37:33 +0200 Subject: Added Link to request report --- .../resources/db/migration/postgresql/V0_1_0__Init.sql | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'src/main/resources/db/migration/postgresql') diff --git a/src/main/resources/db/migration/postgresql/V0_1_0__Init.sql b/src/main/resources/db/migration/postgresql/V0_1_0__Init.sql index 483479d..930064c 100644 --- a/src/main/resources/db/migration/postgresql/V0_1_0__Init.sql +++ b/src/main/resources/db/migration/postgresql/V0_1_0__Init.sql @@ -1,11 +1,13 @@ CREATE TABLE IF NOT EXISTS request ( - id serial, - uuid varchar(255) not null unique, - patient_id varchar(255) not null, - pid varchar(255) not null, - fingerprint varchar(255) not null, - status varchar(16) not null, - processed_at timestamp with time zone default now() not null, + id serial, + uuid varchar(255) not null unique, + patient_id varchar(255) not null, + pid varchar(255) not null, + fingerprint varchar(255) not null, + status varchar(16) not null, + processed_at timestamp with time zone default now() not null, + description varchar(255) default '', + data_quality_report text default '', PRIMARY KEY (id) ); \ No newline at end of file -- cgit v1.2.3