fix: remove defaultTeam (#3989)

This commit is contained in:
Finley Ge
2025-03-06 00:26:32 +08:00
committed by GitHub
parent 3fadabd28b
commit 662a4a4671
5 changed files with 6 additions and 11 deletions

View File

@@ -39,14 +39,14 @@ const TeamMemberSchema = new Schema({
updateTime: {
type: Date
},
defaultTeam: {
type: Boolean,
default: false
},
// Abandoned
role: {
type: String
},
// Abandoned
defaultTeam: {
type: Boolean
}
});