Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady committed Aug 7, 2023
1 parent 667adeb commit 2cacaff
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion design/storage-admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,29 @@ Steps to perform
- Create Tombstone entry for object
- Reflect deletion in daily billing stats

#### Tombstone Objects

```sql
create table inv_object_maints(
id int,
inv_object_id int,
ark varchar(255),
object_type enum('MRT-curatorial','MRT-system'),
role enum('MRT-class','MRT-content'),
aggregate_role enum('MRT-collection','MRT-owner','MRT-service-level-agreement','MRT-submission-agreement','MRT-none')
version_number smallint,
erc_who mediumtext,
erc_what mediumtext,
erc_when mediumtext,
erc_where mediumtext,
created timestamp,
action enum('removed', 'recreated', 'modified-by-merritt', 'maintenance-note')
modified timestamp,
removed timestamp,
note mediumtext
)
```

### Change Primary Storage Node

```mermaid
Expand Down Expand Up @@ -171,4 +194,4 @@ graph TD
end
style RDS fill:#F68D2F
```
```

0 comments on commit 2cacaff

Please sign in to comment.