Feat(library): add core doctypes for media and membership management - #427
Open
brianmalik wants to merge 2 commits into
Open
Feat(library): add core doctypes for media and membership management#427brianmalik wants to merge 2 commits into
brianmalik wants to merge 2 commits into
Conversation
…agement - Add Publisher and Author doctypes - Add Library Media and Media Category for cataloging - Add Media Copy for item-level tracking - Add Library Member for user library profiles - Add Member Card for access and identification Establishes foundation for library catalog, circulation, and membership workflows
brianmalik
requested review from
flexGURU,
muchai and
tuwafula
and removed request for
flexGURU,
muchai and
tuwafula
May 6, 2026 13:41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Library Management Module - Core Doctypes
This PR introduces the foundational data model for the Library Management Module within the Education System. It establishes the core doctypes required for cataloging, membership, and circulation workflows.
The implementation is designed to support scalable library operations including media tracking, member management, and future circulation features (issue/return/reservation).
Added Doctypes
Cataloging Layer
Stores publishing entities for Library Media
Stores authors and enables multi-author relationships
Media Category
Classifies media items (e.g., Books, Journals, Audio, etc.)
Library Media
Core catalog entity representing a media title (ISBN-based master record)
Inventory Layer
Represents physical/stockable instances of Library Media
Supports tracking of:
Membership Layer
Represents system users linked to Student / Employee / External entities
Handles library access identification and membership validation
Key Relationships Established
Design Decisions
Separated catalog (Library Media) from inventory (Media Copy) to support scalable circulation logic
Introduced child table structure for authors to support multi-author books
Designed membership system to support:
Prepared foundation for:
Testing Notes
Notes
This PR establishes the core structural backbone of the Library Management System and is required before implementing circulation and scanning workflows.