mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2017-02-07
This commit is contained in:
24
content/post/2017-02.md
Normal file
24
content/post/2017-02.md
Normal file
@ -0,0 +1,24 @@
|
||||
+++
|
||||
date = "2017-02-07T07:04:52-08:00"
|
||||
author = "Alan Orth"
|
||||
title = "February, 2017"
|
||||
tags = ["Notes"]
|
||||
|
||||
+++
|
||||
## 2017-02-07
|
||||
|
||||
- An item was mapped twice erroneously again, so I had to remove one of the mappings manually:
|
||||
|
||||
```
|
||||
dspace=# select * from collection2item where item_id = '80278';
|
||||
id | collection_id | item_id
|
||||
-------+---------------+---------
|
||||
92551 | 313 | 80278
|
||||
92550 | 313 | 80278
|
||||
90774 | 1051 | 80278
|
||||
(3 rows)
|
||||
dspace=# delete from collection2item where id = 92551 and item_id = 80278;
|
||||
DELETE 1
|
||||
```
|
||||
|
||||
<!--more-->
|
Reference in New Issue
Block a user