From 897ffdab0c8b28e61a63b37de78fa6ac8b2574d1 Mon Sep 17 00:00:00 2001 From: Prakash Date: Sun, 21 Jan 2024 13:49:53 +0530 Subject: [PATCH] fix: sql script added for putting Identifier type=0 for all null values present in generic_note (#4568) * script for initializing null identifier type col to 0(cluster type) * script fix * empty script for 216 * 216 up script revert --- scripts/sql/216_identifier_type_generic_note.down.sql | 0 scripts/sql/216_identifier_type_generic_note.up.sql | 1 + 2 files changed, 1 insertion(+) create mode 100644 scripts/sql/216_identifier_type_generic_note.down.sql create mode 100644 scripts/sql/216_identifier_type_generic_note.up.sql diff --git a/scripts/sql/216_identifier_type_generic_note.down.sql b/scripts/sql/216_identifier_type_generic_note.down.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/scripts/sql/216_identifier_type_generic_note.up.sql b/scripts/sql/216_identifier_type_generic_note.up.sql new file mode 100644 index 00000000000..c3062e83882 --- /dev/null +++ b/scripts/sql/216_identifier_type_generic_note.up.sql @@ -0,0 +1 @@ +UPDATE generic_note SET identifier_type=0 WHERE identifier_type is NULL; \ No newline at end of file