diff options
| author | Paul-Christian Volkmer | 2025-12-16 01:27:59 +0100 |
|---|---|---|
| committer | GitHub | 2025-12-16 00:27:59 +0000 |
| commit | 8e824ea9f6c6708d7d8af330455347b42aeae057 (patch) | |
| tree | 49f7f5aab149102c7cd85ff4e0194dbcac5f99a4 /src/main/resources | |
| parent | 6cfb84770832a3e6cfb209c783a9fda52c5c9141 (diff) | |
fix: do not save PID in test mode (#228)
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/db/migration/mariadb/V0_4_1__ClearPatientId.sql | 1 | ||||
| -rw-r--r-- | src/main/resources/db/migration/postgresql/V0_4_1__ClearPatientId.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/main/resources/db/migration/mariadb/V0_4_1__ClearPatientId.sql b/src/main/resources/db/migration/mariadb/V0_4_1__ClearPatientId.sql new file mode 100644 index 0000000..2ca978e --- /dev/null +++ b/src/main/resources/db/migration/mariadb/V0_4_1__ClearPatientId.sql @@ -0,0 +1 @@ +UPDATE request SET pid = ''; diff --git a/src/main/resources/db/migration/postgresql/V0_4_1__ClearPatientId.sql b/src/main/resources/db/migration/postgresql/V0_4_1__ClearPatientId.sql new file mode 100644 index 0000000..2ca978e --- /dev/null +++ b/src/main/resources/db/migration/postgresql/V0_4_1__ClearPatientId.sql @@ -0,0 +1 @@ +UPDATE request SET pid = ''; |
