mirror of
https://github.com/pcvolkmer/etl-processor.git
synced 2025-07-03 06:52:54 +00:00
Add request and status logging
This commit is contained in:
@ -2,4 +2,6 @@ spring:
|
||||
kafka:
|
||||
bootstrap-servers: ${app.kafka.servers}
|
||||
template:
|
||||
default-topic: ${app.kafka.topic}
|
||||
default-topic: ${app.kafka.topic}
|
||||
flyway:
|
||||
locations: "classpath:db/migration/{vendor}"
|
9
src/main/resources/db/migration/mariadb/V0_1_0__Init.sql
Normal file
9
src/main/resources/db/migration/mariadb/V0_1_0__Init.sql
Normal file
@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS request
|
||||
(
|
||||
id int auto_increment primary key,
|
||||
uuid varchar(255) not null,
|
||||
patient_id varchar(255) not null,
|
||||
fingerprint varchar(255) not null,
|
||||
status varchar(16) not null,
|
||||
processed_at datetime default utc_timestamp() not null
|
||||
);
|
Reference in New Issue
Block a user