-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MODLD-643: Preservation of MARC fields that are not rendered in the UI #94
base: master
Are you sure you want to change the base?
Conversation
content jsonb null | ||
); | ||
|
||
comment on table raw_marcs is 'Stores MARC records associated with LD resources'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let us change the comment to Store unmapped MARC records associated with an Instance resource. Applicable only for Instance resources
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -102,6 +102,10 @@ public class Resource implements Persistable<Long> { | |||
@PrimaryKeyJoinColumn | |||
private FolioMetadata folioMetadata; | |||
|
|||
@OneToOne(cascade = ALL, mappedBy = "resource", orphanRemoval = true) | |||
@PrimaryKeyJoinColumn | |||
private RawMarc rawMarc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let us rename this field to unmappedMarcFields
(or unmappedMarc
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
d6f9580
to
e62db38
Compare
e62db38
to
1894a3d
Compare
No description provided.