Update notes for 2018-10-16

This commit is contained in:
2018-10-16 17:26:18 +03:00
parent 05e45a745e
commit 878e3188ec
3 changed files with 25 additions and 8 deletions

View File

@ -290,4 +290,12 @@ $ psql -h localhost -U postgres -f ~/src/git/DSpace/dspace/etc/postgres/update-s
$ psql -h localhost -U postgres dspacetest -c 'alter user dspacetest nosuperuser;'
```
## 2018-10-16
- Generate a list of the schema on CGSpace so CodeObia can compare with MELSpace:
```
dspace=# \copy (SELECT (CASE when metadata_schema_id=1 THEN 'dc' WHEN metadata_schema_id=2 THEN 'cg' END) AS schema, element, qualifier, scope_note FROM metadatafieldregistry where metadata_schema_id IN (1,2)) TO /tmp/cgspace-schema.csv WITH CSV HEADER;
```
<!-- vim: set sw=2 ts=2: -->