diff options
Diffstat (limited to 'src/main/resources/db/migration/postgresql')
| -rw-r--r-- | src/main/resources/db/migration/postgresql/V0_1_0__Init.sql | 11 |
1 files changed, 11 insertions, 0 deletions
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 new file mode 100644 index 0000000..483479d --- /dev/null +++ b/src/main/resources/db/migration/postgresql/V0_1_0__Init.sql @@ -0,0 +1,11 @@ +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, + PRIMARY KEY (id) +);
\ No newline at end of file |
