build table user activity & user refresh token

This commit is contained in:
2024-11-26 13:33:13 +07:00
parent df875117b0
commit 6e71588f91
4 changed files with 55 additions and 78 deletions

7
src/types/action.ts Normal file
View File

@ -0,0 +1,7 @@
export enum ActivityType {
"Create" = "C",
"Read" = "R",
"Update" = "U",
"Delete" = "D",
"Restore" = "T",
};