-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
server-apiIssues for server apiIssues for server api
Description
Implement additional table team_history to store user team history.
The team_members must be renamed to profiles table.
Database Schema Changes
-
Table
profiles:id(UUID): Primary key.user_id(UUID): Foreign key referencingusers(id).current_team_id(UUID): Foreign key referencingteams(id).created_at(TIMESTAMP): Timestamp of profile creation.updated_at(TIMESTAMP): Timestamp of last profile update.
-
Table
team_history:id(UUID): Primary key.user_id(UUID): Foreign key referencingusers(id).team_id(UUID): Foreign key referencingteams(id).joined_at(TIMESTAMP): Timestamp when the user joined the team.left_at(TIMESTAMP): Timestamp when the user left the team (nullable).
Metadata
Metadata
Assignees
Labels
server-apiIssues for server apiIssues for server api