LP#1978978: add release notes entry
authorGalen Charlton <gmc@equinoxOLI.org>
Sat, 28 Jan 2023 19:24:17 +0000 (14:24 -0500)
committerGalen Charlton <gmc@equinoxOLI.org>
Sat, 28 Jan 2023 19:24:17 +0000 (14:24 -0500)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/sql/Pg/upgrade/1354.schema.drop_public_flag_record_notes.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/xxxx.schema.drop_public_flag_record_notes.sql [deleted file]
docs/RELEASE_NOTES_NEXT/miscellaneous.adoc

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 (file)
index 0000000..03a24c8
--- /dev/null
@@ -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 (file)
index 03a24c8..0000000
+++ /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;
index 2f0b90e..4a84c63 100644 (file)
@@ -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)