-
Notifications
You must be signed in to change notification settings - Fork 4
Branches
Josh edited this page Jul 2, 2024
·
4 revisions
Branches are a hierarchy to help describe the structure of your kingdom.
erDiagram
branches {
datetime created
int created_by
datetime deleted
int id PK
int lft
varchar location
datetime modified
int modified_by
varchar name UK
int parent_id FK
int rght
}
branches }o--|| branches : "parent_id"
members }o--|| branches : "branch_id"
Out of the Box Branches consist of:
- Name: The name of the branch
- Location: General description of where the Branch operates
- Parent: The parent of the branch (for Kingdom's this will be null
- List of Members: Members who are associated with the branch directly.
- List of Children Branches: List of direct children branches.
With the Offices Plugin enabled Branches will also include:
- Details about current Required officers
- List of Officers Including the ability to assign/hire officers check out the Officers plugin to learn more.