I'm using ASP.NET Identity on my web form application. Below is my current identity tables:
Current Identity tables
- Role
- User
- UserClaim
- UserLogin
- UserRole
I need to add a new table to store additional information.
New Table: UserLogs
Fields inside the new table:
- UserLogID (PK)
- UserID (FK)
- IPAddress
- LoginDate
How can I add this custom table? I know how to add custom fields inside existing table but I don't know how to achieve this.
I appreciate your efforts in reaching a solution for my problem.