Add notes for 2022-02-24

This commit is contained in:
2022-02-24 19:15:45 +03:00
parent 3baa93a1f2
commit edacbe8b63
26 changed files with 51 additions and 32 deletions

View File

@ -537,4 +537,15 @@ value.contains("10.2134")
- Many many of Crossref's records are correct where we have no license, and in some cases more correct when we have a different license
- I ran license updates on ~167 DOIs in the end on CGSpace
## 2022-02-24
- Update some audience metadata on CGSpace:
```console
dspace=# UPDATE metadatavalue SET text_value='Academics' WHERE dspace_object_id IN (SELECT uuid FROM item) AND metadata_field_id=144 AND text_value = 'Academicians';
UPDATE 354
dspace=# UPDATE metadatavalue SET text_value='Scientists' WHERE dspace_object_id IN (SELECT uuid FROM item) AND metadata_field_id=144 AND text_value = 'SCIENTISTS';
UPDATE 2
```
<!-- vim: set sw=2 ts=2: -->