From: Galen Charlton Date: Sat, 28 Jan 2023 19:24:17 +0000 (-0500) Subject: LP#1978978: add release notes entry X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f61da4f5e00ee1de2f3fb260bb84b4b4e2717625;p=Evergreen.git LP#1978978: add release notes entry Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/sql/Pg/upgrade/1354.schema.drop_public_flag_record_notes.sql b/Open-ILS/src/sql/Pg/upgrade/1354.schema.drop_public_flag_record_notes.sql new file mode 100644 index 0000000000..03a24c8d8e --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/1354.schema.drop_public_flag_record_notes.sql @@ -0,0 +1,7 @@ +BEGIN; + +SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version); + +ALTER TABLE biblio.record_note DROP COLUMN pub; + +COMMIT; diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.drop_public_flag_record_notes.sql b/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.drop_public_flag_record_notes.sql deleted file mode 100644 index 03a24c8d8e..0000000000 --- a/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.drop_public_flag_record_notes.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; - -SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version); - -ALTER TABLE biblio.record_note DROP COLUMN pub; - -COMMIT; diff --git a/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc b/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc index 2f0b90e0a2..4a84c63a67 100644 --- a/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc +++ b/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc @@ -1,2 +1,3 @@ * Add patron home library code as a column to the View Holds grid in the staff catalog record details page (LP#1991726) * Include template ID in the template table in the Reporter (LP#1998386) +* Remove the `pub` flag from the `biblio.record_note` table (LP#1978978)