projects
/
Evergreen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5e77249cd6e9f5eb05f2738704239f86e257dfde
[Evergreen.git]
/
Open-ILS
/
src
/
sql
/
Pg
/
upgrade
/
XXXX.data.fix-typo-in-seed-data.sql
1
BEGIN;
2
3
--SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
4
5
--LP#1759238: Fix typo in seed data for Physical Description
6
7
UPDATE config.metabib_field
8
SET label = 'Physical Description'
9
WHERE id = 39 AND label = 'Physical Descrption';
10
11
COMMIT;