Skip to content

Commit

Permalink
Fix OBSERVATION_TIME in liquibase
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Jul 10, 2024
1 parent 6697baa commit b018c7c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
<column name="VARIABLE" type="varchar(255)">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="DATE" type="timestamp with time zone">
<column name="OBSERVATION_TIME" type="timestamp with time zone">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="END_DATE" type="timestamp with time zone"/>
<column name="OBSERVATION_TIME_END" type="timestamp with time zone"/>
<column name="TYPE" type="data type of value"/>
<column name="VALUE_NUMERIC" type="double"/>
<column name="VALUE_TEXTUAL" type="clob"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PROJECT;SUBJECT;SOURCE;TOPIC;CATEGORY;VARIABLE;VALUE_NUMERIC;VALUE_TEXTUAL;DATE;END_DATE
project-1;sub-1;source-1;questionnaire_answer;baseline_questions;Perceived_Pain_Score;5;NULL;2021-02-20 00:00:00;NULL
project-1;sub-1;source-1;questionnaire_answer;followup_questions;Name_Of_Physician;NULL;Dr.J.Adams;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;questionnaire_answer;baseline_questions;Perceived_Pain_Score;2;NULL;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;questionnaire_answer;followup_questions;Name_Of_Physician;NULL;Dr.G.Washington;2022-05-20 00:00:00;NULL
project-1;sub-1;source-1;phone_battery_level;NULL;batteryLevel;5;NULL;2021-02-20 00:00:00;NULL
project-1;sub-1;source-1;phone_battery_level;NULL;status;NULL;CHARGING;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;phone_battery_level;NULL;batteryLevel;10;NULL;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;phone_battery_level;NULL;status;NULL;FULL;2021-02-20 00:00:00;NULL
PROJECT;SUBJECT;SOURCE;TOPIC;CATEGORY;VARIABLE;TYPE;VALUE_NUMERIC;VALUE_TEXTUAL;OBSERVATION_TIME;OBSERVATION_TIME_END
project-1;sub-1;source-1;questionnaire_answer;baseline_questions;Perceived_Pain_Score;INTEGER;5;NULL;2021-02-20 00:00:00;NULL
project-1;sub-1;source-1;questionnaire_answer;followup_questions;Name_Of_Physician;STRING;NULL;Dr.J.Adams;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;questionnaire_answer;baseline_questions;Perceived_Pain_Score;INTEGER;2;NULL;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;questionnaire_answer;followup_questions;Name_Of_Physician;STRING;NULL;Dr.G.Washington;2022-05-20 00:00:00;NULL
project-1;sub-1;source-1;phone_battery_level;NULL;batteryLevel;INTEGER;5;NULL;2021-02-20 00:00:00;NULL
project-1;sub-1;source-1;phone_battery_level;NULL;status;STRING;NULL;CHARGING;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;phone_battery_level;NULL;batteryLevel;INTEGER;10;NULL;2021-02-20 00:00:00;NULL
project-1;sub-2;source-1;phone_battery_level;NULL;status;STRING;NULL;FULL;2021-02-20 00:00:00;NULL

0 comments on commit b018c7c

Please sign in to comment.