chore: remove username field from user table

This commit is contained in:
Steven
2023-06-23 01:01:22 +08:00
parent 8dfae8a6aa
commit 2aae515544
11 changed files with 52 additions and 78 deletions

View File

@ -9,9 +9,8 @@ interface User {
updatedTs: TimeStamp;
rowStatus: RowStatus;
username: string;
nickname: string;
email: string;
nickname: string;
role: Role;
}