Uh oh!
There was an error while loading. Please reload this page.
Add V100 staff tables and V101 projects tables migrations - #498
Merged
Conversation
V100 creates the four staff tables (`phoenix_kit_staff_departments`, `phoenix_kit_staff_teams`, `phoenix_kit_staff_people`, `phoenix_kit_staff_team_memberships`) used by the new `phoenix_kit_staff` module — UUIDv7 PKs, cascading deletes dept → team → memberships and user → person → memberships. V101 creates the five projects tables (`phoenix_kit_project_tasks`, `phoenix_kit_project_task_dependencies`, `phoenix_kit_projects`, `phoenix_kit_project_assignments`, `phoenix_kit_project_dependencies`) used by `phoenix_kit_projects`. Assignment/task templates carry a polymorphic assignee (team/department/person) and a `CHECK (num_nonnulls(...) <= 1)` constraint enforces at-most-one assignee on both tables. V101 depends on V100 for the assignee FKs. Bumps @current_version 99 → 101 and extends the moduledoc changelog. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
ddon pushed a commit
that referenced
this pull request
Apr 19, 2026
ddon pushed a commit
that referenced
this pull request
Apr 20, 2026
Covers three merged PRs since 1.7.98: - #498: V100 staff + V101 projects migrations - #499: MediaBrowser Embed macro, selection menu/bulk download, admin attr, drag-drop file→folder move, toggleable search, drag-drop upload at any folder level, unified sidebar/content card, site icon + tab title + logo settings - #500: V102 smart-catalogue + discount migration, multilang debounce flow (attach_hook + client-side skeleton toggles), core form class/wrapper_class realignment, CSS sources abs-path fix, Elixir 1.19 test filters, AGENTS.md core form + multilang docs + CHANGELOG ownership rule Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 tasks
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 freeto 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.
V100 creates the four staff tables (
phoenix_kit_staff_departments,phoenix_kit_staff_teams,phoenix_kit_staff_people,phoenix_kit_staff_team_memberships) used by the newphoenix_kit_staffmodule — UUIDv7 PKs, cascading deletes dept → team → memberships and user → person → memberships.V101 creates the five projects tables (
phoenix_kit_project_tasks,phoenix_kit_project_task_dependencies,phoenix_kit_projects,phoenix_kit_project_assignments,phoenix_kit_project_dependencies) used byphoenix_kit_projects. Assignment/task templates carry a polymorphic assignee (team/department/person) and aCHECK (num_nonnulls(...) <= 1)constraint enforces at-most-one assignee on both tables. V101 depends on V100 for the assignee FKs.Bumps @current_version 99 → 101 and extends the moduledoc changelog.